blob: f7b0cfa04b76971e80a807fcb8321282aabe5759 [file] [log] [blame]
Jakub Latusekd8eaff62020-10-21 13:36:29 +02001{{/*
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Copyright © 2017 Amdocs, AT&T, Bell Canada
3# Modifications Copyright © 2018 ZTE
priyanshua1b061392018-05-29 12:50:14 +05304#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Jakub Latusekd8eaff62020-10-21 13:36:29 +020016*/}}
priyanshua1b061392018-05-29 12:50:14 +053017
priyanshu617e90b2019-03-14 12:56:55 +053018{{ if .Values.initJob.enabled }}
priyanshua1b061392018-05-29 12:50:14 +053019apiVersion: batch/v1
20kind: Job
21metadata:
priyanshu3af9db62018-08-16 16:23:52 +053022 name: {{ include "common.fullname" . }}-workflow-init
priyanshua1b061392018-05-29 12:50:14 +053023 namespace: {{ include "common.namespace" . }}
24 labels:
25 app: {{ include "common.name" . }}-job
26 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010027 release: {{ include "common.release" . }}
priyanshua1b061392018-05-29 12:50:14 +053028 heritage: {{ .Release.Service }}
29spec:
30 backoffLimit: 20
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}-job
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
priyanshua1b061392018-05-29 12:50:14 +053036 spec:
37 restartPolicy: Never
38 initContainers:
ChrisC32172342020-10-02 16:39:13 +020039 - name: {{ include "common.name" . }}-init-readiness
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010040 image: {{ include "repositoryGenerator.image.readiness" . }}
ChrisC32172342020-10-02 16:39:13 +020041 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
42 command:
43 - /app/ready.py
44 args:
45 - --job-name
46 - {{ include "common.release" . }}-sdc-cs-config-cassandra
47 - "-t"
48 - "20"
49 env:
50 - name: NAMESPACE
51 valueFrom:
52 fieldRef:
53 apiVersion: v1
54 fieldPath: metadata.namespace
55 resources:
56 limits:
57 cpu: 100m
58 memory: 100Mi
59 requests:
60 cpu: 3m
61 memory: 20Mi
priyanshua1b061392018-05-29 12:50:14 +053062 containers:
ChrisC32172342020-10-02 16:39:13 +020063 - name: {{ include "common.name" . }}-job
Sylvain Desbureaux0a1eaf32020-11-19 17:56:08 +010064 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.configInitImage }}
ChrisC32172342020-10-02 16:39:13 +020065 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66 env:
67 - name: CS_HOST
68 value: "{{ .Values.global.cassandra.serviceName }}"
69 - name: CS_PORT
70 value: "{{ .Values.config.cassandraClientPort }}"
71 - name: CS_AUTHENTICATE
72 value: "{{ .Values.config.cassandraAuthenticationEnabled }}"
73 - name: CS_USER
74 valueFrom:
75 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
76 - name: CS_PASSWORD
77 valueFrom:
78 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
79 resources: {{ include "common.resources" . | nindent 12 }}
priyanshua1b061392018-05-29 12:50:14 +053080 imagePullSecrets:
81 - name: "{{ include "common.namespace" . }}-docker-registry-key"
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +000082{{ end }}