blob: 7c320fc86fbfb0eeef2280a8ae56ed13e019a89f [file] [log] [blame]
Jakub Latusek0ef82312020-10-21 13:36:30 +02001{{/*
jasmineWenfb56f0f2018-08-29 15:55:28 +00002# Copyright © 2017 Amdocs, Bell Canada
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.
Jakub Latusek0ef82312020-10-21 13:36:30 +020015*/}}
jasmineWenfb56f0f2018-08-29 15:55:28 +000016
17apiVersion: batch/v1
18kind: Job
19metadata:
20 name: {{ include "common.fullname" . }}-init-postgres
21 namespace: {{ include "common.namespace" . }}
22 labels:
23 app: {{ include "common.name" . }}-job
24 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010025 release: {{ include "common.release" . }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000026 heritage: {{ .Release.Service }}
27spec:
28 backoffLimit: 20
29 template:
30 metadata:
31 labels:
32 app: {{ include "common.name" . }}-job
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010033 release: {{ include "common.release" . }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000034 spec:
35 restartPolicy: Never
36 initContainers:
37 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020038 - /app/ready.py
jasmineWenfb56f0f2018-08-29 15:55:28 +000039 args:
40 - --container-name
41 - "{{ .Values.postgres.nameOverride }}"
42 env:
43 - name: NAMESPACE
44 valueFrom:
45 fieldRef:
46 apiVersion: v1
47 fieldPath: metadata.namespace
Sylvain Desbureaux50f9c5d2020-11-19 17:25:17 +010048 image: {{ include "repositoryGenerator.image.readiness" . }}
dkamdocs6ad3a1c2018-12-21 09:25:53 +000049 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy}}
jasmineWenfb56f0f2018-08-29 15:55:28 +000050 name: {{ include "common.name" . }}-readiness
51 containers:
52 - name: {{ include "common.name" . }}-job
Sylvain Desbureaux50f9c5d2020-11-19 17:25:17 +010053 image: {{ include "repositoryGenerator.image.postgres" . }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000054 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55 env:
Krzysztof Opasiak79677d32020-05-05 01:42:23 +020056 - name: PGUSER
57 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "login") | indent 10 }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000058 - name: PGPASSWORD
Krzysztof Opasiak79677d32020-05-05 01:42:23 +020059 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pg-user-creds" "key" "password") | indent 10 }}
jasmineWenfb56f0f2018-08-29 15:55:28 +000060 command:
61 - /bin/sh
62 - -c
63 - |
Krzysztof Opasiak79677d32020-05-05 01:42:23 +020064 psql -h $(VNFSDK_DBPRI_SERVICE_HOST) -f /aaa/init/marketplace_tables_postgres.sql
jasmineWenfb56f0f2018-08-29 15:55:28 +000065 volumeMounts:
66 - name: init-data
67 mountPath: /aaa/init/marketplace_tables_postgres.sql
68 subPath: marketplace_tables_postgres.sql
69 imagePullSecrets:
70 - name: "{{ include "common.namespace" . }}-docker-registry-key"
71 volumes:
72 - name: init-data
73 configMap:
74 name: {{ include "common.fullname" . }}