mirror of https://github.com/kubernetes/kops.git
Deploys dns-controller with default ingress setting (--watch-ingress=true)
This commit is contained in:
parent
f1bc99ff3b
commit
8c13903ab7
|
@ -131,7 +131,9 @@ func (tf *TemplateFunctions) DnsControllerArgv() ([]string, error) {
|
|||
|
||||
argv = append(argv, "/usr/bin/dns-controller")
|
||||
|
||||
argv = append(argv, "--watch-ingress=false")
|
||||
// Default dns-controller behavior --watch-ingress=true
|
||||
// Turning on as per: https://github.com/kubernetes/kops/issues/551#issuecomment-275981949
|
||||
// argv = append(argv, "--watch-ingress=false")
|
||||
|
||||
switch fi.CloudProviderID(tf.cluster.Spec.CloudProvider) {
|
||||
case fi.CloudProviderAWS:
|
||||
|
|
Loading…
Reference in New Issue