mirror of https://github.com/kubernetes/kops.git
Merge pull request #9846 from spotinst/feat-spot-controller-1.0.64
Spotinst: Upgrade the Spot Cluster Controller to version 1.0.64
This commit is contained in:
commit
26859b45fc
|
|
@ -19377,7 +19377,7 @@ spec:
|
||||||
containers:
|
containers:
|
||||||
- name: spotinst-kubernetes-cluster-controller
|
- name: spotinst-kubernetes-cluster-controller
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
image: spotinst/kubernetes-cluster-controller:1.0.63
|
image: spotinst/kubernetes-cluster-controller:1.0.64
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /healthcheck
|
path: /healthcheck
|
||||||
|
|
@ -19387,6 +19387,15 @@ spec:
|
||||||
timeoutSeconds: 2
|
timeoutSeconds: 2
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthcheck
|
||||||
|
port: 4401
|
||||||
|
initialDelaySeconds: 20
|
||||||
|
periodSeconds: 20
|
||||||
|
timeoutSeconds: 2
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 3
|
||||||
env:
|
env:
|
||||||
- name: SPOTINST_TOKEN
|
- name: SPOTINST_TOKEN
|
||||||
valueFrom:
|
valueFrom:
|
||||||
|
|
|
||||||
|
|
@ -171,7 +171,7 @@ spec:
|
||||||
containers:
|
containers:
|
||||||
- name: spotinst-kubernetes-cluster-controller
|
- name: spotinst-kubernetes-cluster-controller
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
image: spotinst/kubernetes-cluster-controller:1.0.63
|
image: spotinst/kubernetes-cluster-controller:1.0.64
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /healthcheck
|
path: /healthcheck
|
||||||
|
|
@ -181,6 +181,15 @@ spec:
|
||||||
timeoutSeconds: 2
|
timeoutSeconds: 2
|
||||||
successThreshold: 1
|
successThreshold: 1
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthcheck
|
||||||
|
port: 4401
|
||||||
|
initialDelaySeconds: 20
|
||||||
|
periodSeconds: 20
|
||||||
|
timeoutSeconds: 2
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 3
|
||||||
env:
|
env:
|
||||||
- name: SPOTINST_TOKEN
|
- name: SPOTINST_TOKEN
|
||||||
valueFrom:
|
valueFrom:
|
||||||
|
|
|
||||||
|
|
@ -610,7 +610,7 @@ func (b *BootstrapChannelBuilder) buildAddons() *channelsapi.Addons {
|
||||||
{
|
{
|
||||||
id := "v1.14.0"
|
id := "v1.14.0"
|
||||||
location := key + "/" + id + ".yaml"
|
location := key + "/" + id + ".yaml"
|
||||||
version := "1.0.63"
|
version := "1.0.64"
|
||||||
|
|
||||||
addons.Spec.Addons = append(addons.Spec.Addons, &channelsapi.AddonSpec{
|
addons.Spec.Addons = append(addons.Spec.Addons, &channelsapi.AddonSpec{
|
||||||
Name: fi.String(key),
|
Name: fi.String(key),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue