Merge "[CLAMP,COMMON] Escape special chars in mysql passwords"
[oom.git] / kubernetes / common / mariadb-init / templates / job.yaml
1 # Copyright © 2019 Orange
2 # Copyright © 2020 Samsung Electronics
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 {{ include "mariadbInit._updateSecrets" . -}}
17
18 apiVersion: batch/v1
19 kind: Job
20 metadata:
21   name: {{ include "common.fullname" . }}-config-job
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   backoffLimit: 20
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}
34         release: {{ include "common.release" . }}
35       name: {{ include "common.name" . }}
36     spec:
37       initContainers:
38       - name: {{ include "common.name" . }}-readiness
39         command:
40         - /app/ready.py
41         args:
42         - --container-name
43         - {{ default .Values.global.mariadbGalera.nameOverride .Values.mariadbGalera.containerName }}
44         env:
45         - name: NAMESPACE
46           valueFrom:
47             fieldRef:
48               apiVersion: v1
49               fieldPath: metadata.namespace
50         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52       containers:
53       - name: {{ include "common.name" . }}
54         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
55         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56         command:
57         - bash
58         - /db_init/db_init.sh
59         env:
60         - name: DB_HOST
61           value: "{{ default .Values.global.mariadbGalera.nameOverride .Values.mariadbGalera.serviceName }}"
62         - name: DB_PORT
63           value: "{{ default .Values.global.mariadbGalera.servicePort .Values.mariadbGalera.servicePort }}"
64         - name: MYSQL_ROOT_PASSWORD
65           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "root-password" "key" (default "password" .Values.global.mariadbGalera.userRootSecretKey)) | indent 10 }}
66         - name: {{ printf "MYSQL_USER_%s" .Values.config.mysqlDatabase | upper }}
67           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" .Values.config.mysqlDatabase "key" "login") | indent 10 }}
68         - name: {{ printf "MYSQL_PASSWORD_%s" .Values.config.mysqlDatabase | upper }}
69           {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" .Values.config.mysqlDatabase "key" "password") | indent 10 }}
70 {{- $root := . }}
71 {{ range $db, $_values := .Values.config.mysqlAdditionalDatabases }}
72         - name: {{ printf "MYSQL_USER_%s" $db | upper }}
73           {{- include "common.secret.envFromSecretFast" (dict "global" $root "uid" $db "key" "login") | indent 10 }}
74         - name: {{ printf "MYSQL_PASSWORD_%s" $db | upper }}
75           {{- include "common.secret.envFromSecretFast" (dict "global" $root "uid" $db "key" "password") | indent 10 }}
76 {{ end }}
77         volumeMounts:
78         - mountPath: /etc/localtime
79           name: localtime
80           readOnly: true
81         - name: mariadb-conf
82           mountPath: /db_init/
83           readOnly: true
84         resources:
85 {{ include "common.resources" . | indent 12 }}
86       {{- if .Values.nodeSelector }}
87       nodeSelector:
88 {{ toYaml .Values.nodeSelector | indent 10 }}
89       {{- end -}}
90       {{- if .Values.affinity }}
91       affinity:
92 {{ toYaml .Values.affinity | indent 10 }}
93       {{- end }}
94       volumes:
95       - name: mariadb-conf
96         configMap:
97           name: {{ include "mariadbInit.configMap" . }}
98       - name: localtime
99         hostPath:
100           path: /etc/localtime
101       restartPolicy: Never
102       imagePullSecrets:
103       - name: "{{ include "common.namespace" . }}-docker-registry-key"