[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / portal / components / portal-mariadb / templates / job.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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 apiVersion: batch/v1
17 kind: Job
18 metadata:
19   name: {{ include "common.fullname" . }}-config
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}-job
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}-job
31         release: {{ include "common.release" . }}
32     spec:
33       restartPolicy: Never
34       initContainers:
35       - name: {{ include "common.name" . }}-init-readiness
36         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
37         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
38         command:
39         - /app/ready.py
40         args:
41         - --container-name
42         - {{ include "common.name" . }}
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49       containers:
50       - name: {{ include "common.name" . }}-job
51         image: "{{ include "common.repository" . }}/{{ .Values.mariadbInitImage }}"
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         env:
54         - name: DB_HOST
55           value: "{{ include "common.servicename" . }}"
56         - name: DB_USER
57           value: {{ .Values.config.mariadbUser }}
58         - name: DB_PASS
59           valueFrom:
60             secretKeyRef: {name: {{ include "common.fullname" . }}, key: db-root-password}
61         - name: SQL_SRC_DIR
62           value: {{ .Values.config.sqlSourceDirectory }}
63       - name: {{ include "common.name" . }}-oom-update-job
64         image: "{{ include "common.repository" . }}/{{ .Values.mariadbInitImage }}"
65         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66         env:
67         - name: DB_HOST
68           value: "{{ include "common.servicename" . }}"
69         - name: DB_USER
70           value: {{ .Values.config.mariadbUser }}
71         - name: DB_PORT
72           value: "{{ .Values.service.internalPort }}"
73         - name: DB_PASS
74           valueFrom:
75             secretKeyRef: {name: {{ include "common.fullname" . }}, key: db-root-password}
76         command:
77         - /bin/sh
78         - -x
79         - -c
80         - "mysql -vv --user=$DB_USER --password=$DB_PASS --host=$DB_HOST --port=$DB_PORT < /tmp/oom_updates.sql"
81         volumeMounts:
82         - name: portal-mariadb-sql
83           mountPath: /tmp/oom_updates.sql
84           subPath: oom_updates.sql
85       volumes:
86       - name: portal-mariadb-sql
87         configMap:
88           name: {{ include "common.fullname" . }}-mariadb
89       imagePullSecrets:
90       - name: "{{ include "common.namespace" . }}-docker-registry-key"
91       restartPolicy: Never