Merge "redis config optimization"
[oom.git] / kubernetes / vid / templates / job.yaml
1 # Copyright © 2018 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: batch/v1
16 kind: Job
17 metadata:
18   name: {{ include "common.fullname" . }}-galera-config
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}-job
22     release: {{ include "common.release" . }}
23 spec:
24   template:
25     metadata:
26       labels:
27         app: {{ include "common.name" . }}-job
28         release: {{ include "common.release" . }}
29     spec:
30       initContainers:
31 #This container checks that all galera instances are up before initializing it.
32       - name: {{ include "common.name" . }}-readiness
33         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
34         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
35         command:
36         - /root/ready.py
37         - --container-name
38         - {{ index .Values "mariadb-galera" "service" "name" }}
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45       containers:
46       - name: {{ include "common.name" . }}-job
47         image: {{ .Values.mariadb_image }}
48         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49         volumeMounts:
50         - mountPath: /dbcmd-config/db_cmd.sh
51           name: {{ include "common.fullname" . }}-config
52           subPath: db_cmd.sh
53         - mountPath: /db-config/vid-pre-init.sql
54           name: {{ include "common.fullname" . }}-config
55           subPath: vid-pre-init.sql
56         command:
57         - /bin/sh
58         args:
59         - -x
60         - /dbcmd-config/db_cmd.sh
61         env:
62         - name: MYSQL_PASSWORD
63           valueFrom:
64             secretKeyRef:
65               name: {{ template "common.fullname" . }}-db
66               key: db-user-password
67         - name: MYSQL_HOST
68           value: {{ index .Values "mariadb-galera" "service" "name" }}
69         - name: MYSQL_USER
70           value: {{ index .Values "mariadb-galera" "config" "userName" }}
71         - name: MYSQL_PORT
72           value: "{{ index .Values "mariadb-galera" "service" "internalPort" }}"
73       restartPolicy: Never
74       volumes:
75         - name: {{ include "common.fullname" . }}-config
76           configMap:
77             name: {{ include "common.fullname" . }}
78             items:
79               - key: db_cmd.sh
80                 path: db_cmd.sh
81               - key: vid-pre-init.sql
82                 path: vid-pre-init.sql