apiVersion: v1 kind: Service metadata: name: {{ include "covidok.redis" . }} labels: {{- include "covidok.labels" . | nindent 4 }} spec: ports: - port: 6379 selector: {{- include "covidok.selectorLabels" . | nindent 4 }} app: redis --- apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "covidok.redis" . }} spec: selector: matchLabels: {{- include "covidok.selectorLabels" . | nindent 6 }} app: redis strategy: type: Recreate template: metadata: {{- with .Values.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} labels: {{- include "covidok.selectorLabels" . | nindent 8 }} app: redis spec: containers: - image: "{{ .Values.images.redis.name }}:{{ .Values.images.redis.tag }}" name: redis ports: - containerPort: 6379 name: redis command: ["redis-server"]