mirror of https://github.com/kubernetes/kops.git
Merge pull request #2105 from justinsb/kopeio_networking_no_configure_cloud_routes
kopeio networking should not set configure-cloud-routes
This commit is contained in:
commit
72754d896e
|
@ -140,7 +140,7 @@ func (b *KubeControllerManagerOptionsBuilder) BuildOptions(o interface{}) error
|
|||
kcm.ConfigureCloudRoutes = fi.Bool(false)
|
||||
} else if networking.Kopeio != nil {
|
||||
// Kopeio is based on kubenet / external
|
||||
kcm.ConfigureCloudRoutes = fi.Bool(true)
|
||||
kcm.ConfigureCloudRoutes = fi.Bool(false)
|
||||
} else {
|
||||
return fmt.Errorf("no networking mode set")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue