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