diff --git a/upup/models/bindata.go b/upup/models/bindata.go index d98c6a8b26..ce46a9dd4e 100644 --- a/upup/models/bindata.go +++ b/upup/models/bindata.go @@ -19377,7 +19377,7 @@ spec: containers: - name: spotinst-kubernetes-cluster-controller imagePullPolicy: Always - image: spotinst/kubernetes-cluster-controller:1.0.63 + image: spotinst/kubernetes-cluster-controller:1.0.64 livenessProbe: httpGet: path: /healthcheck @@ -19387,6 +19387,15 @@ spec: timeoutSeconds: 2 successThreshold: 1 failureThreshold: 3 + readinessProbe: + httpGet: + path: /healthcheck + port: 4401 + initialDelaySeconds: 20 + periodSeconds: 20 + timeoutSeconds: 2 + successThreshold: 1 + failureThreshold: 3 env: - name: SPOTINST_TOKEN valueFrom: diff --git a/upup/models/cloudup/resources/addons/spotinst-kubernetes-cluster-controller.addons.k8s.io/v1.14.0.yaml.template b/upup/models/cloudup/resources/addons/spotinst-kubernetes-cluster-controller.addons.k8s.io/v1.14.0.yaml.template index 69de312f3d..bdb26c8916 100644 --- a/upup/models/cloudup/resources/addons/spotinst-kubernetes-cluster-controller.addons.k8s.io/v1.14.0.yaml.template +++ b/upup/models/cloudup/resources/addons/spotinst-kubernetes-cluster-controller.addons.k8s.io/v1.14.0.yaml.template @@ -171,7 +171,7 @@ spec: containers: - name: spotinst-kubernetes-cluster-controller imagePullPolicy: Always - image: spotinst/kubernetes-cluster-controller:1.0.63 + image: spotinst/kubernetes-cluster-controller:1.0.64 livenessProbe: httpGet: path: /healthcheck @@ -181,6 +181,15 @@ spec: timeoutSeconds: 2 successThreshold: 1 failureThreshold: 3 + readinessProbe: + httpGet: + path: /healthcheck + port: 4401 + initialDelaySeconds: 20 + periodSeconds: 20 + timeoutSeconds: 2 + successThreshold: 1 + failureThreshold: 3 env: - name: SPOTINST_TOKEN valueFrom: diff --git a/upup/pkg/fi/cloudup/bootstrapchannelbuilder.go b/upup/pkg/fi/cloudup/bootstrapchannelbuilder.go index 2f41fd8f03..f19843d642 100644 --- a/upup/pkg/fi/cloudup/bootstrapchannelbuilder.go +++ b/upup/pkg/fi/cloudup/bootstrapchannelbuilder.go @@ -610,7 +610,7 @@ func (b *BootstrapChannelBuilder) buildAddons() *channelsapi.Addons { { id := "v1.14.0" location := key + "/" + id + ".yaml" - version := "1.0.63" + version := "1.0.64" addons.Spec.Addons = append(addons.Spec.Addons, &channelsapi.AddonSpec{ Name: fi.String(key),