-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathplugin.yaml
More file actions
364 lines (364 loc) · 10.4 KB
/
plugin.yaml
File metadata and controls
364 lines (364 loc) · 10.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
#### Controller Service
---
# needed for StatefulSet
kind: Service
apiVersion: v1
metadata:
name: csi-provisioner
namespace: kube-system
labels:
app: csi-provisioner
spec:
selector:
app: csi-provisioner
ports:
- name: dummy
port: 12345
---
kind: StatefulSet
apiVersion: apps/v1
metadata:
name: csi-provisioner
namespace: kube-system
spec:
selector:
matchLabels:
app: csi-provisioner
serviceName: "csi-provisioner"
replicas: 1
template:
metadata:
labels:
app: csi-provisioner
spec:
serviceAccount: csi-provisioner
hostNetwork: true
containers:
- name: csi-provisioner
imagePullPolicy: Always
image: quay.io/k8scsi/csi-provisioner:v1.5.0
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--timeout=60s" # Recommended as shares may take some time to create
- "--v=5"
env:
- name: CSI_ENDPOINT
value: /var/lib/csi/hs-csi.sock
volumeMounts:
- name: socket-dir
mountPath: /var/lib/csi/
- name: csi-attacher
imagePullPolicy: Always
image: quay.io/k8scsi/csi-attacher:v2.1.0
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--v=5"
env:
- name: CSI_ENDPOINT
value: /var/lib/csi/hs-csi.sock
volumeMounts:
- name: socket-dir
mountPath: /var/lib/csi/
- name: csi-snapshotter
imagePullPolicy: Always
image: quay.io/k8scsi/csi-snapshotter:v2.0.1
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--v=5"
env:
- name: CSI_ENDPOINT
value: /var/lib/csi/hs-csi.sock
volumeMounts:
- name: socket-dir
mountPath: /var/lib/csi/
- name: csi-resizer
imagePullPolicy: Always
image: k8s.gcr.io/sig-storage/csi-resizer:v1.2.0
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--v=5"
env:
- name: CSI_ENDPOINT
value: /var/lib/csi/hs-csi.sock
volumeMounts:
- name: socket-dir
mountPath: /var/lib/csi/
- name: hs-csi-plugin-controller
securityContext:
privileged: true
capabilities:
add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true
imagePullPolicy: Always
image: hammerspaceinc/csi-plugin:v1.2.1
env:
- name: CSI_ENDPOINT
value: /var/lib/csi/hs-csi.sock
- name: HS_USERNAME
valueFrom:
secretKeyRef:
name: com.hammerspace.csi.credentials
key: username
- name: HS_PASSWORD
valueFrom:
secretKeyRef:
name: com.hammerspace.csi.credentials
key: password
- name: HS_ENDPOINT
valueFrom:
secretKeyRef:
name: com.hammerspace.csi.credentials
key: endpoint
- name: HS_TLS_VERIFY
value: "false"
- name: CSI_MAJOR_VERSION
value: "1"
volumeMounts:
- name: socket-dir
mountPath: /var/lib/csi/
- name: staging-dir
mountPath: /tmp
mountPropagation: Bidirectional
volumes:
- name: socket-dir
emptyDir: {}
- name: staging-dir
hostPath:
path: /tmp
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: csi-provisioner
namespace: kube-system
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: csi-provisioner
rules:
- apiGroups: [""]
resources: ["pods"]
verbs: ["list", "watch"]
- apiGroups: [""]
resources: ["persistentvolumes"]
verbs: ["get", "patch", "list", "watch", "create", "delete", "update"]
- apiGroups: [""]
resources: ["persistentvolumeclaims", "persistentvolumeclaims/status"]
verbs: ["get", "patch", "list", "watch", "update"]
- apiGroups: ["storage.k8s.io"]
resources: ["storageclasses"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["events"]
verbs: ["list", "watch", "create", "update", "patch"]
- apiGroups: [""]
resources: ["endpoints"]
verbs: ["list", "watch", "create", "update", "delete", "get"]
- apiGroups: [""]
resources: ["secrets"]
verbs: ["get", "list"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshotclasses"]
verbs: ["get", "list", "watch"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshotcontents"]
verbs: ["create", "get", "list", "watch", "update", "delete"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshots"]
verbs: ["get", "list", "watch", "update"]
- apiGroups: ["apiextensions.k8s.io"]
resources: ["customresourcedefinitions"]
verbs: ["create", "list", "watch", "delete"]
- apiGroups: ["storage.k8s.io"]
resources: ["volumeattachments"]
verbs: ["get", "list", "watch", "update", "patch"]
- apiGroups: ["storage.k8s.io"]
resources: ["storageclasses"]
verbs: ["get", "list", "watch", "update"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: csi-provisioner
namespace: kube-system
subjects:
- kind: ServiceAccount
name: csi-provisioner
namespace: kube-system
roleRef:
kind: ClusterRole
name: csi-provisioner
apiGroup: rbac.authorization.k8s.io
#### Node service
---
kind: DaemonSet
apiVersion: apps/v1
metadata:
name: csi-node
namespace: kube-system
spec:
selector:
matchLabels:
app: csi-node
template:
metadata:
labels:
app: csi-node
spec:
serviceAccount: csi-node
hostNetwork: true
containers:
- name: csi-resizer
imagePullPolicy: Always
image: k8s.gcr.io/sig-storage/csi-resizer:v1.2.0
args:
- "--csi-address=$(CSI_ENDPOINT)"
- "--v=5"
env:
- name: CSI_ENDPOINT
value: /csi/csi.sock
volumeMounts:
- name: socket-dir
mountPath: /csi
- name: driver-registrar
imagePullPolicy: Always
image: quay.io/k8scsi/csi-node-driver-registrar:v1.2.0
lifecycle:
preStop:
exec:
command: ["/bin/sh", "-c", "rm -rf /$(REG_SOCKET)"]
args:
- "--v=5"
- "--csi-address=$(CSI_ENDPOINT)"
- "--kubelet-registration-path=$(REG_SOCKET)"
securityContext:
privileged: true
env:
- name: CSI_ENDPOINT
value: /csi/csi.sock
- name: REG_SOCKET
value: /var/lib/kubelet/plugins_registry/com.hammerspace.csi/csi.sock
- name: KUBE_NODE_NAME
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: spec.nodeName
volumeMounts:
- name: socket-dir
mountPath: /csi
- name: registration-dir
mountPath: /registration
- name: hs-csi-plugin-node
securityContext:
privileged: true
capabilities:
add: ["SYS_ADMIN"]
allowPrivilegeEscalation: true
imagePullPolicy: Always
image: hammerspaceinc/csi-plugin:v1.2.1
env:
- name: CSI_ENDPOINT
value: /csi/csi.sock
- name: HS_USERNAME
valueFrom:
secretKeyRef:
name: com.hammerspace.csi.credentials
key: username
- name: HS_PASSWORD
valueFrom:
secretKeyRef:
name: com.hammerspace.csi.credentials
key: password
- name: HS_ENDPOINT
valueFrom:
secretKeyRef:
name: com.hammerspace.csi.credentials
key: endpoint
- name: CSI_NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: HS_TLS_VERIFY
value: "false"
- name: CSI_MAJOR_VERSION
value: "1"
volumeMounts:
- name: socket-dir
mountPath: /csi
- name: registration-dir
mountPath: /registration
mountPropagation: Bidirectional
- name: mountpoint-dir
mountPath: /var/lib/kubelet/
mountPropagation: Bidirectional
- name: dev-dir
mountPath: /dev
- name: staging-dir
mountPath: /tmp
mountPropagation: Bidirectional
volumes:
- name: socket-dir
hostPath:
path: /var/lib/kubelet/plugins_registry/com.hammerspace.csi
type: DirectoryOrCreate
- name: mountpoint-dir
hostPath:
path: /var/lib/kubelet/
- name: registration-dir
hostPath:
path: /var/lib/kubelet/plugins_registry/
- name: dev-dir
hostPath:
path: /dev
- name: staging-dir
hostPath:
path: /tmp
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: csi-node
namespace: kube-system
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: csi-node
namespace: kube-system
rules:
- apiGroups: [""]
resources: ["pods"]
verbs: ["list", "watch"]
- apiGroups: [""]
resources: ["secrets"]
verbs: ["get", "list"]
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "list", "update"]
- apiGroups: [""]
resources: ["namespaces", "events"]
verbs: ["get", "list", "create"]
- apiGroups: [""]
resources: ["persistentvolumes", "persistentvolumeclaims", "persistentvolumeclaims/status", "events"]
verbs: ["get", "list", "watch", "update", "patch"]
- apiGroups: ["storage.k8s.io"]
resources: ["volumeattachments"]
verbs: ["get", "list", "watch", "update", "patch"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: csi-node
namespace: kube-system
subjects:
- kind: ServiceAccount
name: csi-node
namespace: kube-system
roleRef:
kind: ClusterRole
name: csi-node
apiGroup: rbac.authorization.k8s.io