From e91555eaa699594d71ce13589f5d14db7e7e78ee Mon Sep 17 00:00:00 2001 From: Tasko Olevski Date: Mon, 15 Dec 2025 22:11:35 +0100 Subject: [PATCH] test: undo location change --- .../csi-rclone/templates/csi-controller-rclone.yaml | 8 ++++---- .../csi-rclone/templates/csi-nodeplugin-rclone.yaml | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/deploy/csi-rclone/templates/csi-controller-rclone.yaml b/deploy/csi-rclone/templates/csi-controller-rclone.yaml index 4f65cd8..dd13c43 100644 --- a/deploy/csi-rclone/templates/csi-controller-rclone.yaml +++ b/deploy/csi-rclone/templates/csi-controller-rclone.yaml @@ -54,8 +54,8 @@ spec: image: {{ .Values.csiControllerRclone.csiProvisioner.image.repository }}:{{ .Values.csiControllerRclone.csiProvisioner.image.tag | default .Chart.AppVersion }} imagePullPolicy: {{ .Values.csiControllerRclone.csiProvisioner.imagePullPolicy }} volumeMounts: - - mountPath: /csi - name: socket-dir + - name: socket-dir + mountPath: /csi - name: rclone args: - run @@ -85,7 +85,7 @@ spec: fieldRef: fieldPath: spec.nodeName - name: CSI_ENDPOINT - value: "unix://csi/csi.sock" + value: "unix://plugin/csi.sock" - name: KUBERNETES_CLUSTER_DOMAIN value: {{ quote .Values.kubernetesClusterDomain }} {{- if .Values.csiControllerRclone.rclone.goMemLimit }} @@ -114,7 +114,7 @@ spec: timeoutSeconds: 3 periodSeconds: 2 volumeMounts: - - mountPath: /csi + - mountPath: /plugin name: socket-dir - name: liveness-probe imagePullPolicy: Always diff --git a/deploy/csi-rclone/templates/csi-nodeplugin-rclone.yaml b/deploy/csi-rclone/templates/csi-nodeplugin-rclone.yaml index be27eb0..c7b0bf7 100644 --- a/deploy/csi-rclone/templates/csi-nodeplugin-rclone.yaml +++ b/deploy/csi-rclone/templates/csi-nodeplugin-rclone.yaml @@ -22,7 +22,7 @@ spec: - name: node-driver-registrar args: - --v=5 - - --csi-address=/csi/csi.sock + - --csi-address=/plugin/csi.sock - --kubelet-registration-path=/var/lib/kubelet/plugins/{{ .Values.storageClassName }}/csi.sock env: - name: KUBE_NODE_NAME @@ -45,7 +45,7 @@ spec: resources: {{- toYaml .Values.csiNodepluginRclone.rclone.resources | nindent 12 }} volumeMounts: - - mountPath: /csi + - mountPath: /plugin name: plugin-dir - mountPath: /registration name: registration-dir @@ -53,9 +53,9 @@ spec: imagePullPolicy: Always image: registry.k8s.io/sig-storage/livenessprobe:v2.15.0 args: - - --csi-address=/csi/csi.sock + - --csi-address=/plugin/csi.sock volumeMounts: - - mountPath: /csi + - mountPath: /plugin name: plugin-dir - name: rclone args: @@ -86,7 +86,7 @@ spec: fieldRef: fieldPath: spec.nodeName - name: CSI_ENDPOINT - value: "unix://csi/csi.sock" + value: "unix://plugin/csi.sock" - name: KUBERNETES_CLUSTER_DOMAIN value: {{ quote .Values.kubernetesClusterDomain }} - name: DRIVER_NAME @@ -134,7 +134,7 @@ spec: timeoutSeconds: 10 periodSeconds: 30 volumeMounts: - - mountPath: /csi + - mountPath: /plugin name: plugin-dir - mountPath: /run/csi-rclone name: node-temp-dir