apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "covidok.fullname" . }} labels: {{- include "covidok.labels" . | nindent 4 }} spec: replicas: 3 selector: matchLabels: {{- include "covidok.selectorLabels" . | nindent 6 }} template: metadata: {{- with .Values.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} labels: {{- include "covidok.selectorLabels" . | nindent 8 }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} initContainers: - name: mysql image: mysql:8.0 command: ["/bin/bash"] args: ["-c", "while ! mysqladmin ping -h mysql --silent; do sleep 1; done"] containers: - name: {{ .Chart.Name }} image: "{{ .Values.images.covidok.name }}:{{ .Values.images.covidok.tag }}" imagePullPolicy: {{ .Values.images.pullPolicy }} ports: - name: http containerPort: 80 protocol: TCP {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }}