Skip to content

Commit e91555e

Browse files
committed
test: undo location change
1 parent f2a8e20 commit e91555e

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

deploy/csi-rclone/templates/csi-controller-rclone.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ spec:
5454
image: {{ .Values.csiControllerRclone.csiProvisioner.image.repository }}:{{ .Values.csiControllerRclone.csiProvisioner.image.tag | default .Chart.AppVersion }}
5555
imagePullPolicy: {{ .Values.csiControllerRclone.csiProvisioner.imagePullPolicy }}
5656
volumeMounts:
57-
- mountPath: /csi
58-
name: socket-dir
57+
- name: socket-dir
58+
mountPath: /csi
5959
- name: rclone
6060
args:
6161
- run
@@ -85,7 +85,7 @@ spec:
8585
fieldRef:
8686
fieldPath: spec.nodeName
8787
- name: CSI_ENDPOINT
88-
value: "unix://csi/csi.sock"
88+
value: "unix://plugin/csi.sock"
8989
- name: KUBERNETES_CLUSTER_DOMAIN
9090
value: {{ quote .Values.kubernetesClusterDomain }}
9191
{{- if .Values.csiControllerRclone.rclone.goMemLimit }}
@@ -114,7 +114,7 @@ spec:
114114
timeoutSeconds: 3
115115
periodSeconds: 2
116116
volumeMounts:
117-
- mountPath: /csi
117+
- mountPath: /plugin
118118
name: socket-dir
119119
- name: liveness-probe
120120
imagePullPolicy: Always

deploy/csi-rclone/templates/csi-nodeplugin-rclone.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
- name: node-driver-registrar
2323
args:
2424
- --v=5
25-
- --csi-address=/csi/csi.sock
25+
- --csi-address=/plugin/csi.sock
2626
- --kubelet-registration-path=/var/lib/kubelet/plugins/{{ .Values.storageClassName }}/csi.sock
2727
env:
2828
- name: KUBE_NODE_NAME
@@ -45,17 +45,17 @@ spec:
4545
resources:
4646
{{- toYaml .Values.csiNodepluginRclone.rclone.resources | nindent 12 }}
4747
volumeMounts:
48-
- mountPath: /csi
48+
- mountPath: /plugin
4949
name: plugin-dir
5050
- mountPath: /registration
5151
name: registration-dir
5252
- name: liveness-probe
5353
imagePullPolicy: Always
5454
image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0
5555
args:
56-
- --csi-address=/csi/csi.sock
56+
- --csi-address=/plugin/csi.sock
5757
volumeMounts:
58-
- mountPath: /csi
58+
- mountPath: /plugin
5959
name: plugin-dir
6060
- name: rclone
6161
args:
@@ -86,7 +86,7 @@ spec:
8686
fieldRef:
8787
fieldPath: spec.nodeName
8888
- name: CSI_ENDPOINT
89-
value: "unix://csi/csi.sock"
89+
value: "unix://plugin/csi.sock"
9090
- name: KUBERNETES_CLUSTER_DOMAIN
9191
value: {{ quote .Values.kubernetesClusterDomain }}
9292
- name: DRIVER_NAME
@@ -134,7 +134,7 @@ spec:
134134
timeoutSeconds: 10
135135
periodSeconds: 30
136136
volumeMounts:
137-
- mountPath: /csi
137+
- mountPath: /plugin
138138
name: plugin-dir
139139
- mountPath: /run/csi-rclone
140140
name: node-temp-dir

0 commit comments

Comments
 (0)