redis-deployment.yaml 365 B

1234567891011121314151617181920
  1. apiVersion: extensions/v1beta1
  2. kind: Deployment
  3. metadata:
  4. name: redis
  5. spec:
  6. replicas: 1
  7. template:
  8. metadata:
  9. labels:
  10. app: redis
  11. spec:
  12. containers:
  13. - image: redis:alpine
  14. name: redis
  15. volumeMounts:
  16. - mountPath: /data
  17. name: redis-data
  18. volumes:
  19. - name: redis-data
  20. emptyDir: {}