blob: 0630aaf0c1bd8ef4df215a31b0781ea672bce27f [file] [log] [blame]
jasmineWenfb56f0f2018-08-29 15:55:28 +00001# Copyright © 2017 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
15apiVersion: batch/v1
16kind: Job
17metadata:
18 name: {{ include "common.fullname" . }}-init-postgres
19 namespace: {{ include "common.namespace" . }}
20 labels:
21 app: {{ include "common.name" . }}-job
22 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010023 release: {{ include "common.release" . }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000024 heritage: {{ .Release.Service }}
25spec:
26 backoffLimit: 20
27 template:
28 metadata:
29 labels:
30 app: {{ include "common.name" . }}-job
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010031 release: {{ include "common.release" . }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000032 spec:
33 restartPolicy: Never
34 initContainers:
35 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020036 - /app/ready.py
jasmineWenfb56f0f2018-08-29 15:55:28 +000037 args:
38 - --container-name
39 - "{{ .Values.postgres.nameOverride }}"
40 env:
41 - name: NAMESPACE
42 valueFrom:
43 fieldRef:
44 apiVersion: v1
45 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020046 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
dkamdocs6ad3a1c2018-12-21 09:25:53 +000047 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy}}
jasmineWenfb56f0f2018-08-29 15:55:28 +000048 name: {{ include "common.name" . }}-readiness
49 containers:
50 - name: {{ include "common.name" . }}-job
51 image: "{{ .Values.postgresRepository }}/{{ .Values.postgresImage }}"
52 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 env:
Krzysztof Opasiak79677d32020-05-05 01:42:23 +020054 - name: PGUSER
55 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 10 }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000056 - name: PGPASSWORD
Krzysztof Opasiak79677d32020-05-05 01:42:23 +020057 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000058 command:
59 - /bin/sh
60 - -c
61 - |
Krzysztof Opasiak79677d32020-05-05 01:42:23 +020062 psql -h $(VNFSDK_DBPRI_SERVICE_HOST) -f /aaa/init/marketplace_tables_postgres.sql
jasmineWenfb56f0f2018-08-29 15:55:28 +000063 volumeMounts:
64 - name: init-data
65 mountPath: /aaa/init/marketplace_tables_postgres.sql
66 subPath: marketplace_tables_postgres.sql
67 imagePullSecrets:
68 - name: "{{ include "common.namespace" . }}-docker-registry-key"
69 volumes:
70 - name: init-data
71 configMap:
72 name: {{ include "common.fullname" . }}