jasmineWen | fb56f0f | 2018-08-29 15:55:28 +0000 | [diff] [blame] | 1 | # 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 | |
| 15 | apiVersion: batch/v1 |
| 16 | kind: Job |
| 17 | metadata: |
| 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 "+" "_" }} |
| 23 | release: {{ .Release.Name }} |
| 24 | heritage: {{ .Release.Service }} |
| 25 | spec: |
| 26 | backoffLimit: 20 |
| 27 | template: |
| 28 | metadata: |
| 29 | labels: |
| 30 | app: {{ include "common.name" . }}-job |
| 31 | release: {{ .Release.Name }} |
| 32 | spec: |
| 33 | restartPolicy: Never |
| 34 | initContainers: |
| 35 | - command: |
| 36 | - /root/ready.py |
| 37 | args: |
| 38 | - --container-name |
| 39 | - "{{ .Values.postgres.nameOverride }}" |
| 40 | env: |
| 41 | - name: NAMESPACE |
| 42 | valueFrom: |
| 43 | fieldRef: |
| 44 | apiVersion: v1 |
| 45 | fieldPath: metadata.namespace |
| 46 | image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" |
dkamdocs | 6ad3a1c | 2018-12-21 09:25:53 +0000 | [diff] [blame^] | 47 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy}} |
jasmineWen | fb56f0f | 2018-08-29 15:55:28 +0000 | [diff] [blame] | 48 | 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: |
| 54 | - name: PGPASSWORD |
| 55 | value: "{{ .Values.postgres.config.pgUserPassword }}" |
| 56 | command: |
| 57 | - /bin/sh |
| 58 | - -c |
| 59 | - | |
| 60 | psql -U {{ .Values.postgres.config.pgUserName }} -h $(VNFSDK_DBPRI_SERVICE_HOST) -f /aaa/init/marketplace_tables_postgres.sql |
| 61 | volumeMounts: |
| 62 | - name: init-data |
| 63 | mountPath: /aaa/init/marketplace_tables_postgres.sql |
| 64 | subPath: marketplace_tables_postgres.sql |
| 65 | imagePullSecrets: |
| 66 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |
| 67 | volumes: |
| 68 | - name: init-data |
| 69 | configMap: |
| 70 | name: {{ include "common.fullname" . }} |