blob: 6c1a0c0e5891508f0f652432b3a5b3214e7b5016 [file] [log] [blame]
jasmineWen66f6a3b2018-04-03 17:48:41 +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" . }}-config
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 }}
25spec:
26 template:
27 metadata:
28 labels:
29 app: {{ include "common.name" . }}-job
30 release: {{ .Release.Name }}
31 spec:
32 restartPolicy: Never
33 hostname: postgres
34 containers:
35 - name: {{ include "common.name" . }}-job
36 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
37 imagePullPolicy: {{ .Values.pullPolicy | default .Values.global.pullPolicy }}
38 env:
39 - name: DB_HOST
40 value: "{{ .Release.Name }}-{{ .Values.service.name }}"
41 imagePullSecrets:
42 - name: "{{ include "common.namespace" . }}-docker-registry-key"