Skip to content

Commit f08d668

Browse files
authored
Change etcd image tag (#330)
Change etcd image to what it used to be due to lack of sh in the base image. Use absolute path for bootstrap script.
1 parent 81e33bd commit f08d668

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

operator/pkg/controllers/etcd/pod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func podSpecFor(controlPlane *v1alpha1.ControlPlane) *v1.PodSpec {
8080
MountPath: "/etc/kubernetes/",
8181
}},
8282
Command: []string{
83-
"./etc/kubernetes/bootstrap.sh",
83+
"/etc/kubernetes/bootstrap.sh",
8484
},
8585
Args: []string{
8686
"--cert-file=/etc/kubernetes/pki/etcd/server/server.crt",

operator/pkg/utils/imageprovider/imageprovider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func KubeProxy(version string) string {
5757
}
5858

5959
func ETCD() string {
60-
return repositoryName + "etcd-io/etcd:v3.5.4-eks-1-23-9"
60+
return repositoryName + "etcd-io/etcd:v3.4.16-eks-1-21-4"
6161
}
6262

6363
func CoreDNS() string {

0 commit comments

Comments
 (0)