8e5b17cf13
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
22 lines
No EOL
453 B
YAML
22 lines
No EOL
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 |