aboutsummaryrefslogtreecommitdiff
path: root/deploy/kubernetes/sample-busybox-pod.yaml
blob: dce2be4c32ab0164bac72da9e1a44919662fe3f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
kind: Pod
apiVersion: v1
metadata:
  name: my-csi-app
spec:
  containers:
    - name: my-frontend
      image: busybox
      volumeMounts:
        - mountPath: "/data"
          name: seaweedfs-volume
      command: [ "sleep", "1000000" ]
  volumes:
    - name: seaweedfs-volume
      persistentVolumeClaim:
        claimName: seaweedfs-csi-pvc