mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
Fresh dep ensure
This commit is contained in:
16
vendor/github.com/kubernetes-csi/drivers/examples/hostpath/csi-app.yaml
generated
vendored
Normal file
16
vendor/github.com/kubernetes-csi/drivers/examples/hostpath/csi-app.yaml
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
kind: Pod
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: my-csi-app
|
||||
spec:
|
||||
containers:
|
||||
- name: my-frontend
|
||||
image: busybox
|
||||
volumeMounts:
|
||||
- mountPath: "/data"
|
||||
name: my-csi-volume
|
||||
command: [ "sleep", "1000000" ]
|
||||
volumes:
|
||||
- name: my-csi-volume
|
||||
persistentVolumeClaim:
|
||||
claimName: csi-pvc # defined in csi-pvs.yaml
|
11
vendor/github.com/kubernetes-csi/drivers/examples/hostpath/csi-pvc.yaml
generated
vendored
Normal file
11
vendor/github.com/kubernetes-csi/drivers/examples/hostpath/csi-pvc.yaml
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: csi-pvc
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 1Gi
|
||||
storageClassName: csi-hostpath-sc # defined in csi-setup.yaml
|
7
vendor/github.com/kubernetes-csi/drivers/examples/hostpath/csi-storageclass.yaml
generated
vendored
Normal file
7
vendor/github.com/kubernetes-csi/drivers/examples/hostpath/csi-storageclass.yaml
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
apiVersion: storage.k8s.io/v1
|
||||
kind: StorageClass
|
||||
metadata:
|
||||
name: csi-hostpath-sc
|
||||
provisioner: csi-hostpath
|
||||
reclaimPolicy: Delete
|
||||
volumeBindingMode: Immediate
|
Reference in New Issue
Block a user