mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-13 01:40:23 +00:00
22 lines
453 B
YAML
22 lines
453 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: deployment
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: redis
|
|
spec:
|
|
containers:
|
|
- name: redis
|
|
image: redis
|
|
volumeMounts:
|
|
- name: vmfs-vmdk-storage
|
|
mountPath: /data/
|
|
volumes:
|
|
- name: vmfs-vmdk-storage
|
|
vsphereVolume:
|
|
volumePath: "[Datastore] volumes/testdir"
|
|
fsType: ext4 |