blob: be7d5199248edbf4a37c35a4c031230d9064f6e8 [file] [log] [blame]
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00001# Copyright © 2017 Amdocs, AT&T, Bell Canada
2# Modifications Copyright © 2018 ZTE
priyanshua1b061392018-05-29 12:50:14 +05303#
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.
15
priyanshu617e90b2019-03-14 12:56:55 +053016{{ if .Values.initJob.enabled }}
priyanshua1b061392018-05-29 12:50:14 +053017apiVersion: batch/v1
18kind: Job
19metadata:
priyanshu3af9db62018-08-16 16:23:52 +053020 name: {{ include "common.fullname" . }}-workflow-init
priyanshua1b061392018-05-29 12:50:14 +053021 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" . }}
priyanshua1b061392018-05-29 12:50:14 +053026 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" . }}
priyanshua1b061392018-05-29 12:50:14 +053034 spec:
35 restartPolicy: Never
36 initContainers:
ChrisC32172342020-10-02 16:39:13 +020037 - name: {{ include "common.name" . }}-init-readiness
38 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
39 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
40 command:
41 - /app/ready.py
42 args:
43 - --job-name
44 - {{ include "common.release" . }}-sdc-cs-config-cassandra
45 - "-t"
46 - "20"
47 env:
48 - name: NAMESPACE
49 valueFrom:
50 fieldRef:
51 apiVersion: v1
52 fieldPath: metadata.namespace
53 resources:
54 limits:
55 cpu: 100m
56 memory: 100Mi
57 requests:
58 cpu: 3m
59 memory: 20Mi
priyanshua1b061392018-05-29 12:50:14 +053060 containers:
ChrisC32172342020-10-02 16:39:13 +020061 - name: {{ include "common.name" . }}-job
62 image: "{{ include "common.repository" . }}/{{ .Values.configInitImage }}"
63 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
64 env:
65 - name: CS_HOST
66 value: "{{ .Values.global.cassandra.serviceName }}"
67 - name: CS_PORT
68 value: "{{ .Values.config.cassandraClientPort }}"
69 - name: CS_AUTHENTICATE
70 value: "{{ .Values.config.cassandraAuthenticationEnabled }}"
71 - name: CS_USER
72 valueFrom:
73 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
74 - name: CS_PASSWORD
75 valueFrom:
76 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
77 resources: {{ include "common.resources" . | nindent 12 }}
priyanshua1b061392018-05-29 12:50:14 +053078 imagePullSecrets:
79 - name: "{{ include "common.namespace" . }}-docker-registry-key"
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +000080{{ end }}