Skip to content

Commit 0747042

Browse files
authored
Merge pull request #698 from verult/1-2-0-sidecars-stagingrc
Staging RC overlay: Bump all sidecar versions to latest
2 parents 215fe81 + 23d0c83 commit 0747042

File tree

3 files changed

+75
-6
lines changed

3 files changed

+75
-6
lines changed

deploy/kubernetes/images/prow-gke-release-staging-rc/image.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: imagetag-csi-provisioner-prow-rc
55
imageTag:
66
name: k8s.gcr.io/sig-storage/csi-provisioner
7-
newTag: "v2.0.4"
7+
newTag: "v2.1.0"
88
---
99

1010
apiVersion: builtin
@@ -13,7 +13,7 @@ metadata:
1313
name: imagetag-csi-attacher-prow-rc
1414
imageTag:
1515
name: k8s.gcr.io/sig-storage/csi-attacher
16-
newTag: "v3.0.1"
16+
newTag: "v3.1.0"
1717
---
1818

1919
apiVersion: builtin
@@ -22,7 +22,7 @@ metadata:
2222
name: imagetag-csi-resize-prow-rc
2323
imageTag:
2424
name: k8s.gcr.io/sig-storage/csi-resizer
25-
newTag: "v1.0.1"
25+
newTag: "v1.1.0"
2626
---
2727

2828
apiVersion: builtin
@@ -32,7 +32,7 @@ metadata:
3232
imageTag:
3333
name: gke.gcr.io/gcp-compute-persistent-disk-csi-driver
3434
newName: gcr.io/gke-release-staging/gcp-compute-persistent-disk-csi-driver
35-
newTag: "v1.2.0-rc1"
35+
newTag: "v1.2.0"
3636
---
3737

3838
apiVersion: builtin
@@ -41,7 +41,7 @@ metadata:
4141
name: imagetag-csi-node-registrar-prow-rc
4242
imageTag:
4343
name: k8s.gcr.io/sig-storage/csi-node-driver-registrar
44-
newTag: "v2.0.1"
44+
newTag: "v2.1.0"
4545
---
4646

4747
apiVersion: builtin
@@ -50,6 +50,6 @@ metadata:
5050
name: imagetag-csi-snapshotter-prow-head
5151
imageTag:
5252
name: k8s.gcr.io/sig-storage/csi-snapshotter
53-
newTag: "v3.0.1"
53+
newTag: "v3.0.3"
5454
---
5555

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# for external-provisioner
2+
- op: replace
3+
path: /spec/template/spec/containers/0/args/3
4+
value: "--http-endpoint=:22011"
5+
- op: add
6+
path: /spec/template/spec/containers/0/ports
7+
value:
8+
- containerPort: 22011
9+
name: http-endpoint
10+
protocol: TCP
11+
- op: add
12+
path: /spec/template/spec/containers/0/livenessProbe
13+
value:
14+
failureThreshold: 1
15+
httpGet:
16+
path: /healthz/leader-election
17+
port: http-endpoint
18+
initialDelaySeconds: 10
19+
timeoutSeconds: 10
20+
periodSeconds: 20
21+
22+
# for external-attacher
23+
- op: replace
24+
path: /spec/template/spec/containers/1/args/2
25+
value: "--http-endpoint=:22012"
26+
- op: add
27+
path: /spec/template/spec/containers/1/ports
28+
value:
29+
- containerPort: 22012
30+
name: http-endpoint
31+
protocol: TCP
32+
- op: add
33+
path: /spec/template/spec/containers/1/livenessProbe
34+
value:
35+
failureThreshold: 1
36+
httpGet:
37+
path: /healthz/leader-election
38+
port: http-endpoint
39+
initialDelaySeconds: 10
40+
timeoutSeconds: 10
41+
periodSeconds: 20
42+
43+
# for external-resizer
44+
- op: replace
45+
path: /spec/template/spec/containers/2/args/2
46+
value: "--http-endpoint=:22013"
47+
- op: add
48+
path: /spec/template/spec/containers/2/ports
49+
value:
50+
- containerPort: 22013
51+
name: http-endpoint
52+
protocol: TCP
53+
- op: add
54+
path: /spec/template/spec/containers/2/livenessProbe
55+
value:
56+
failureThreshold: 1
57+
httpGet:
58+
path: /healthz/leader-election
59+
port: http-endpoint
60+
initialDelaySeconds: 10
61+
timeoutSeconds: 10
62+
periodSeconds: 20

deploy/kubernetes/overlays/prow-gke-release-staging-rc/kustomization.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,10 @@ resources:
44
- ../stable
55
transformers:
66
- ../../images/prow-gke-release-staging-rc
7+
patchesJson6902:
8+
- target:
9+
group: apps
10+
version: v1
11+
kind: Deployment
12+
name: csi-gce-pd-controller
13+
path: controller_patches.yaml

0 commit comments

Comments
 (0)