1234567891011121314151617181920 |
- apiVersion: extensions/v1beta1
- kind: Deployment
- metadata:
- name: redis
- spec:
- replicas: 1
- template:
- metadata:
- labels:
- app: redis
- spec:
- containers:
- - image: redis:alpine
- name: redis
- volumeMounts:
- - mountPath: /data
- name: redis-data
- volumes:
- - name: redis-data
- emptyDir: {}
|