redis-deployment.yaml 383 B

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