From cf99f488cb3ccd10fbc0e423faf78d59c0755b1f Mon Sep 17 00:00:00 2001 From: Erik Stidham Date: Thu, 3 May 2018 16:38:16 -0500 Subject: [PATCH] Set etcd version when create cluster with Calico --- cmd/kops/create_cluster.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/kops/create_cluster.go b/cmd/kops/create_cluster.go index eccc296f82508..b93219d73ce98 100644 --- a/cmd/kops/create_cluster.go +++ b/cmd/kops/create_cluster.go @@ -864,6 +864,8 @@ func RunCreateCluster(f *util.Factory, out io.Writer, c *CreateClusterOptions) e cluster.Spec.Networking.Calico = &api.CalicoNetworkingSpec{ APIVersion: "v3", } + // This is not a special version but simply of the 3 series + cluster.Spec.EtcdClusters[0].Version = "3.2.18" case "canal": cluster.Spec.Networking.Canal = &api.CanalNetworkingSpec{} case "kube-router":