Skip to content

Commit

Permalink
remove configmap validations . rollback #441, fix #443
Browse files Browse the repository at this point in the history
  • Loading branch information
gianrubio committed Mar 15, 2017
1 parent b7b6b90 commit 3570d44
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions core/pkg/ingress/controller/launch.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,19 +128,6 @@ func NewIngressController(backend ingress.Controller) *GenericController {
glog.Infof("service %v validated as source of Ingress status", *publishSvc)
}

for _, configMap := range []string{*configMap, *tcpConfigMapName, *udpConfigMapName} {

if configMap == "" {
continue
}

_, err = k8s.IsValidConfigMap(kubeClient, configMap)

if err != nil {
glog.Fatalf("%v", err)
}
}

if *watchNamespace != "" {

_, err = k8s.IsValidNamespace(kubeClient, *watchNamespace)
Expand Down

0 comments on commit 3570d44

Please sign in to comment.