File tree 3 files changed +74
-5
lines changed
images/prow-gke-release-staging-rc
overlays/prow-gke-release-staging-rc
3 files changed +74
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
4
4
name : imagetag-csi-provisioner-prow-rc
5
5
imageTag :
6
6
name : k8s.gcr.io/sig-storage/csi-provisioner
7
- newTag : " v2.0.4 "
7
+ newTag : " v2.1.0 "
8
8
---
9
9
10
10
apiVersion : builtin
@@ -13,7 +13,7 @@ metadata:
13
13
name : imagetag-csi-attacher-prow-rc
14
14
imageTag :
15
15
name : k8s.gcr.io/sig-storage/csi-attacher
16
- newTag : " v3.0.1 "
16
+ newTag : " v3.1.0 "
17
17
---
18
18
19
19
apiVersion : builtin
@@ -22,7 +22,7 @@ metadata:
22
22
name : imagetag-csi-resize-prow-rc
23
23
imageTag :
24
24
name : k8s.gcr.io/sig-storage/csi-resizer
25
- newTag : " v1.0.1 "
25
+ newTag : " v1.1.0 "
26
26
---
27
27
28
28
apiVersion : builtin
@@ -32,7 +32,7 @@ metadata:
32
32
imageTag :
33
33
name : gke.gcr.io/gcp-compute-persistent-disk-csi-driver
34
34
newName : gcr.io/gke-release-staging/gcp-compute-persistent-disk-csi-driver
35
- newTag : " v1.2.0-rc1 "
35
+ newTag : " v1.2.0"
36
36
---
37
37
38
38
apiVersion : builtin
@@ -41,7 +41,7 @@ metadata:
41
41
name : imagetag-csi-node-registrar-prow-rc
42
42
imageTag :
43
43
name : k8s.gcr.io/sig-storage/csi-node-driver-registrar
44
- newTag : " v2.0.1 "
44
+ newTag : " v2.1.0 "
45
45
---
46
46
47
47
apiVersion : builtin
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -4,3 +4,10 @@ resources:
4
4
- ../stable
5
5
transformers :
6
6
- ../../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
You can’t perform that action at this time.
0 commit comments