wunderio / csi-rclone

CSI driver for rclone
Apache License 2.0
213 stars 62 forks source link

Not mounting #43

Closed 0xEmma closed 1 year ago

0xEmma commented 1 year ago

Tried setting this up on K3S, using the rancher.io/local-path provisioner, PVC will bind without issue to the Rclone Storage class, however the PVC is not infact backed by rclone.

(defaults are setup in the secret) SC Config:

apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
  labels:
    app.kubernetes.io/instance: rclone-csi
  name: rclone
provisioner: csi-rclone

PVC Config:

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: data-rclone-example
spec:
  accessModes:
  - ReadWriteOnce
  resources:
    requests:
      storage: 10Gi
  storageClassName: rclone