blob: f4a68d7752350ac0c4088dfb7b647916ff909df1 [file] [log] [blame]
priyanshu3af9db62018-08-16 16:23:52 +05301# Copyright © 2018 Amdocs, Bell Canada
priyanshua1b061392018-05-29 12:50:14 +05302#
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:
priyanshu3af9db62018-08-16 16:23:52 +053018 name: {{ include "common.fullname" . }}-workflow-init
priyanshua1b061392018-05-29 12:50:14 +053019 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 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 - name: {{ include "common.name" . }}-init-readiness
36 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
37 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
38 command:
priyanshu3af9db62018-08-16 16:23:52 +053039 - /root/job_complete.py
priyanshua1b061392018-05-29 12:50:14 +053040 args:
priyanshu3af9db62018-08-16 16:23:52 +053041 - --job-name
42 - {{ .Release.Name }}-sdc-cs-config-cassandra
priyanshua1b061392018-05-29 12:50:14 +053043 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
49 containers:
50 - name: {{ include "common.name" . }}-job
51 image: "{{ include "common.repository" . }}/{{ .Values.configInitImage }}"
52 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 env:
54 - name: CS_HOST
priyanshu3af9db62018-08-16 16:23:52 +053055 value: "sdc-cs"
56 - name: CS_PORT
57 value: "{{ .Values.config.cassandraThriftClientPort }}"
58 - name: CS_AUTHENTICATE
59 value: "{{ .Values.config.cassandaAuthenticationEnabled }}"
priyanshua1b061392018-05-29 12:50:14 +053060 - name: CS_USER
61 valueFrom:
62 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_user}
63 - name: CS_PASSWORD
64 valueFrom:
65 secretKeyRef: {name: {{ .Release.Name }}-sdc-cs-secrets, key: sdc_password}
66 imagePullSecrets:
67 - name: "{{ include "common.namespace" . }}-docker-registry-key"