redis-deployment.yaml 510 B

1234567891011121314151617181920212223242526272829
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. labels:
  5. app: redis
  6. name: redis
  7. namespace: vote
  8. spec:
  9. replicas: 1
  10. selector:
  11. matchLabels:
  12. app: redis
  13. template:
  14. metadata:
  15. labels:
  16. app: redis
  17. spec:
  18. containers:
  19. - image: redis:alpine
  20. name: redis
  21. ports:
  22. - containerPort: 6379
  23. name: redis
  24. volumeMounts:
  25. - mountPath: /data
  26. name: redis-data
  27. volumes:
  28. - name: redis-data
  29. emptyDir: {}