You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
937 B
41 lines
937 B
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"]
|
|
|