This commit is contained in:
parent
8cc1e01af4
commit
9b63f4c26a
6 changed files with 25 additions and 8 deletions
|
|
@ -4,6 +4,8 @@ apiVersion: apps/v1
|
|||
metadata:
|
||||
name: csi-linode-controller
|
||||
namespace: kube-system
|
||||
labels:
|
||||
app: csi-linode-controller
|
||||
spec:
|
||||
serviceName: "csi-linode"
|
||||
replicas: 1
|
||||
|
|
@ -34,7 +36,7 @@ spec:
|
|||
mountPath: /scripts
|
||||
containers:
|
||||
- name: csi-provisioner
|
||||
image: quay.io/k8scsi/csi-provisioner:v1.0.0
|
||||
image: quay.io/k8scsi/csi-provisioner:v1.1.0
|
||||
args:
|
||||
- "--volume-name-prefix=pvc"
|
||||
- "--volume-name-uuid-length=16"
|
||||
|
|
@ -48,7 +50,7 @@ spec:
|
|||
- name: socket-dir
|
||||
mountPath: /var/lib/csi/sockets/pluginproxy/
|
||||
- name: csi-attacher
|
||||
image: quay.io/k8scsi/csi-attacher:v1.0.0
|
||||
image: quay.io/k8scsi/csi-attacher:v1.1.0
|
||||
args:
|
||||
- "--v=2"
|
||||
- "--csi-address=$(ADDRESS)"
|
||||
|
|
@ -59,8 +61,19 @@ spec:
|
|||
volumeMounts:
|
||||
- name: socket-dir
|
||||
mountPath: /var/lib/csi/sockets/pluginproxy/
|
||||
- name: linode-csi-resizer
|
||||
image: quay.io/k8scsi/csi-resizer:v0.1.0
|
||||
args:
|
||||
- "--v=2"
|
||||
- "--csi-address=$(ADDRESS)"
|
||||
env:
|
||||
- name: ADDRESS
|
||||
value: /var/lib/csi/sockets/pluginproxy/csi.sock
|
||||
volumeMounts:
|
||||
- name: socket-dir
|
||||
mountPath: /var/lib/csi/sockets/pluginproxy/
|
||||
- name: linode-csi-plugin
|
||||
image: linode/linode-blockstorage-csi-driver:v0.1.6
|
||||
image: linode/linode-blockstorage-csi-driver:v0.2.0
|
||||
args :
|
||||
- "--endpoint=$(CSI_ENDPOINT)"
|
||||
- "--token=$(LINODE_TOKEN)"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue