blob: 8fe711b82506a0c892f075c0555a6adfee5f3b86 [file] [log] [blame]
sebdet5c449882021-01-13 11:35:56 +01001{{/*
2# Copyright © 2018 Amdocs, Bell Canada
3# Modifications Copyright © 2020-2021 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
18apiVersion: batch/v1
19kind: Job
20metadata:
21 name: {{ include "common.release" . }}-policy-clamp-galera-config
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}-policy-clamp-job
25 release: {{ include "common.release" . }}
26spec:
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}-policy-clamp-job
31 release: {{ include "common.release" . }}
32 spec:
andreas-geissler7d85f3f2021-07-19 17:53:22 +020033 imagePullSecrets:
34 - name: "{{ include "common.namespace" . }}-docker-registry-key"
sebdet5c449882021-01-13 11:35:56 +010035 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 - --job-name
43 - {{ include "common.release" . }}-policy-galera-config
44 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
50 containers:
51 - name: {{ include "common.release" . }}-policy-clamp-galera-config
52 image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.db.image }}
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 volumeMounts:
55 - mountPath: /dbcmd-config/create-db-tables.sh
56 name: {{ include "common.fullname" . }}-config
57 subPath: create-db-tables.sh
58 - mountPath: /dbcmd-config/policy-clamp-create-tables.sql
59 name: {{ include "common.fullname" . }}-config
60 subPath: policy-clamp-create-tables.sql
61 command:
62 - /bin/sh
63 args:
64 - -x
65 - /dbcmd-config/create-db-tables.sh
66 env:
67 - name: MYSQL_HOST
68 value: "{{ .Values.db.service.name }}"
69 - name: MYSQL_USER
70 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-creds" "key" "login") | indent 10 }}
71 - name: MYSQL_PASSWORD
72 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-creds" "key" "password") | indent 10 }}
73 - name: MYSQL_PORT
74 value: "{{ .Values.db.service.internalPort }}"
75 resources:
76{{ include "common.resources" . }}
77 restartPolicy: Never
78 volumes:
79 - name: {{ include "common.fullname" . }}-config
80 configMap:
81 name: {{ include "common.fullname" . }}-configmap
82 items:
83 - key: create-db-tables.sh
84 path: create-db-tables.sh
85 - key: policy-clamp-create-tables.sql
86 path: policy-clamp-create-tables.sql