File tree Expand file tree Collapse file tree 9 files changed +85
-16
lines changed Expand file tree Collapse file tree 9 files changed +85
-16
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 63
63
periodSeconds : 10
64
64
failureThreshold : 5
65
65
- name : csi-provisioner
66
- image : k8s.gcr.io/sig-storage/csi-provisioner:v2 .0.4
66
+ image : k8s.gcr.io/sig-storage/csi-provisioner:v3 .0.0
67
67
args :
68
68
- --csi-address=$(ADDRESS)
69
69
- --v=5
77
77
- name : socket-dir
78
78
mountPath : /var/lib/csi/sockets/pluginproxy/
79
79
- name : csi-attacher
80
- image : k8s.gcr.io/sig-storage/csi-attacher:v3.0 .0
80
+ image : k8s.gcr.io/sig-storage/csi-attacher:v3.3 .0
81
81
args :
82
82
- --csi-address=$(ADDRESS)
83
83
- --timeout=120s
@@ -91,18 +91,18 @@ spec:
91
91
- name : socket-dir
92
92
mountPath : /var/lib/csi/sockets/pluginproxy/
93
93
- name : csi-resizer
94
- image : k8s.gcr.io/sig-storage/csi-resizer:v1.1 .0
95
- args :
96
- - --csi-address=$(ADDRESS)
97
- - --v=2
98
- env :
99
- - name : ADDRESS
100
- value : /var/lib/csi/sockets/pluginproxy/csi.sock
101
- volumeMounts :
102
- - name : socket-dir
103
- mountPath : /var/lib/csi/sockets/pluginproxy/
94
+ image : k8s.gcr.io/sig-storage/csi-resizer:v1.3 .0
95
+ args :
96
+ - --csi-address=$(ADDRESS)
97
+ - --v=2
98
+ env :
99
+ - name : ADDRESS
100
+ value : /var/lib/csi/sockets/pluginproxy/csi.sock
101
+ volumeMounts :
102
+ - name : socket-dir
103
+ mountPath : /var/lib/csi/sockets/pluginproxy/
104
104
- name : liveness-probe
105
- image : k8s.gcr.io/sig-storage/livenessprobe:v2.1 .0
105
+ image : k8s.gcr.io/sig-storage/livenessprobe:v2.5 .0
106
106
args :
107
107
- --csi-address=/csi/csi.sock
108
108
volumeMounts :
Original file line number Diff line number Diff line change 1
1
---
2
- apiVersion : storage.k8s.io/v1beta1
2
+ apiVersion : storage.k8s.io/v1
3
3
kind : CSIDriver
4
4
metadata :
5
5
name : powervs.csi.ibm.com
Original file line number Diff line number Diff line change
1
+ apiVersion : kustomize.config.k8s.io/v1beta1
2
+ kind : Kustomization
3
+ namespace : kube-system
4
+ resources :
5
+ - clusterrole-attacher.yaml
6
+ - clusterrole-csi-node.yaml
7
+ - clusterrole-provisioner.yaml
8
+ - clusterrole-resizer.yaml
9
+ - clusterrolebinding-attacher.yaml
10
+ - clusterrolebinding-csi-node.yaml
11
+ - clusterrolebinding-provisioner.yaml
12
+ - clusterrolebinding-resizer.yaml
13
+ - controller.yaml
14
+ - csidriver.yaml
15
+ - node.yaml
16
+ - serviceaccount-csi-controller.yaml
17
+ - serviceaccount-csi-node.yaml
Original file line number Diff line number Diff line change 72
72
periodSeconds : 10
73
73
failureThreshold : 5
74
74
- name : node-driver-registrar
75
- image : k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.0.1
75
+ image : k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
76
76
args :
77
77
- --csi-address=$(ADDRESS)
78
78
- --kubelet-registration-path=$(DRIVER_REG_SOCK_PATH)
92
92
- name : registration-dir
93
93
mountPath : /registration
94
94
- name : liveness-probe
95
- image : k8s.gcr.io/sig-storage/livenessprobe:v2.1 .0
95
+ image : k8s.gcr.io/sig-storage/livenessprobe:v2.5 .0
96
96
args :
97
97
- --csi-address=/csi/csi.sock
98
98
volumeMounts :
Original file line number Diff line number Diff line change
1
+ apiVersion : kustomize.config.k8s.io/v1beta1
2
+ kind : Kustomization
3
+ bases :
4
+ - ../../base
5
+ patchesStrategicMerge :
6
+ - main_image.yaml
Original file line number Diff line number Diff line change
1
+ kind : DaemonSet
2
+ apiVersion : apps/v1
3
+ metadata :
4
+ name : powervs-csi-node
5
+ namespace : kube-system
6
+ labels :
7
+ app.kubernetes.io/name : powervs-csi-driver
8
+ spec :
9
+ template :
10
+ spec :
11
+ containers :
12
+ - name : powervs-plugin
13
+ image : quay.io/powercloud/powervs-csi-driver:dev
14
+ imagePullPolicy : Always
15
+ ---
16
+ kind : Deployment
17
+ apiVersion : apps/v1
18
+ metadata :
19
+ name : powervs-csi-controller
20
+ namespace : kube-system
21
+ labels :
22
+ app.kubernetes.io/name : powervs-csi-driver
23
+ spec :
24
+ template :
25
+ spec :
26
+ containers :
27
+ - name : powervs-plugin
28
+ image : quay.io/powercloud/powervs-csi-driver:dev
29
+ imagePullPolicy : Always
Original file line number Diff line number Diff line change
1
+ apiVersion : kustomize.config.k8s.io/v1beta1
2
+ kind : Kustomization
3
+ bases :
4
+ - ../../base
5
+ images :
6
+ - name : quay.io/powercloud/powervs-csi-driver
7
+ newTag : v0.0.1
8
+ - name : k8s.gcr.io/sig-storage/csi-provisioner
9
+ newTag : v3.0.0
10
+ - name : k8s.gcr.io/sig-storage/csi-attacher
11
+ newTag : v3.3.0
12
+ - name : k8s.gcr.io/sig-storage/csi-resizer
13
+ newTag : v1.3.0
14
+ - name : k8s.gcr.io/sig-storage/livenessprobe
15
+ newTag : v2.5.0
16
+ - name : k8s.gcr.io/sig-storage/csi-node-driver-registrar
17
+ newTag : v2.3.0
You can’t perform that action at this time.
0 commit comments