blob: 7490b47cef617eafd3be11b3010e1567e8406405 [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
16apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
priyanshua1b061392018-05-29 12:50:14 +053025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010032 release: {{ include "common.release" . }}
priyanshua1b061392018-05-29 12:50:14 +053033 spec:
34 initContainers:
priyanshu617e90b2019-03-14 12:56:55 +053035 {{- if .Values.initJob.enabled }}
priyanshua1b061392018-05-29 12:50:14 +053036 - name: {{ include "common.name" . }}-job-completion
37 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
38 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
39 command:
40 - /root/job_complete.py
41 args:
42 - --job-name
priyanshu3af9db62018-08-16 16:23:52 +053043 - {{ include "common.fullname" . }}-workflow-init
priyanshua1b061392018-05-29 12:50:14 +053044 env:
45 - name: NAMESPACE
46 valueFrom:
47 fieldRef:
48 apiVersion: v1
49 fieldPath: metadata.namespace
priyanshu9be63472019-03-13 14:43:36 +053050 {{ end }}
priyanshua1b061392018-05-29 12:50:14 +053051 containers:
52 - name: {{ include "common.name" . }}
53 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
54 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
55 ports:
IlanaPc80bff92019-11-18 21:10:08 +020056 - containerPort: {{ template "wfd-be.internalPort" . }}
priyanshua1b061392018-05-29 12:50:14 +053057 # disable liveness probe when breakpoints set in debugger
58 # so K8s doesn't restart unresponsive container
59 {{ if .Values.liveness.enabled }}
60 livenessProbe:
61 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +020062 port: {{ template "wfd-be.internalPort" . }}
priyanshua1b061392018-05-29 12:50:14 +053063 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
64 periodSeconds: {{ .Values.liveness.periodSeconds }}
65 {{ end }}
66 readinessProbe:
67 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +020068 port: {{ template "wfd-be.internalPort" . }}
priyanshua1b061392018-05-29 12:50:14 +053069 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
70 periodSeconds: {{ .Values.readiness.periodSeconds }}
71 env:
72 - name: JAVA_OPTIONS
73 value: {{ .Values.config.javaOptions }}
priyanshu3af9db62018-08-16 16:23:52 +053074 - name: CS_HOSTS
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +000075 value: "{{ .Values.global.cassandra.serviceName }}"
priyanshu3af9db62018-08-16 16:23:52 +053076 - name: CS_PORT
77 value: "{{ .Values.config.cassandraClientPort }}"
priyanshubd7fbe22019-03-20 12:45:21 +053078 - name: CS_AUTHENTICATE
79 value: "{{ .Values.config.cassandraAuthenticationEnabled }}"
priyanshu3af9db62018-08-16 16:23:52 +053080 - name: CS_USER
81 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010082 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
priyanshu3af9db62018-08-16 16:23:52 +053083 - name: CS_PASSWORD
84 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010085 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
priyanshubd7fbe22019-03-20 12:45:21 +053086 - name: CS_SSL_ENABLED
87 value: "{{ .Values.config.cassandraSSLEnabled }}"
88 - name: CS_TRUST_STORE_PATH
89 value: "{{ .Values.config.cassandraTrustStorePath }}"
90 - name: CS_TRUST_STORE_PASSWORD
IlanaPc80bff92019-11-18 21:10:08 +020091 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010092 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: cs_truststore_password}
priyanshu3af9db62018-08-16 16:23:52 +053093 - name: SDC_PROTOCOL
94 value: "{{ .Values.config.sdcProtocol }}"
95 - name: SDC_ENDPOINT
96 value: "{{ .Values.config.sdcEndpoint }}"
priyanshuc00acbb2018-09-06 11:29:23 +053097 - name: SDC_USER
98 value: "{{ .Values.config.sdcExternalUser }}"
99 - name: SDC_PASSWORD
IlanaPc80bff92019-11-18 21:10:08 +0200100 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100101 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: wf_external_user_password}
priyanshubd7fbe22019-03-20 12:45:21 +0530102 - name: SERVER_SSL_ENABLED
103 value: "{{ .Values.config.serverSSLEnabled }}"
104 - name: SERVER_SSL_KEYSTORE_TYPE
priyanshu5698c832019-03-26 18:02:33 +0530105 value: "{{ .Values.config.serverSSLKeyStoreType }}"
priyanshubd7fbe22019-03-20 12:45:21 +0530106 - name: SERVER_SSL_KEYSTORE_PATH
107 value: "{{ .Values.config.serverSSLKeyStorePath }}"
108 - name: SERVER_SSL_KEY_PASSWORD
IlanaPc80bff92019-11-18 21:10:08 +0200109 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100110 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: keystore_password}
IlanaPc80bff92019-11-18 21:10:08 +0200111 - name: SERVER_SSL_TRUSTSTORE_TYPE
112 value: "{{ .Values.config.serverSSLTrustStoreType }}"
113 - name: SERVER_SSL_TRUSTSTORE_PATH
114 value: "{{ .Values.config.serverSSLTrustStorePath }}"
115 - name: SERVER_SSL_TRUST_PASSWORD
116 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100117 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: truststore_password}
priyanshua1b061392018-05-29 12:50:14 +0530118 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000119 - name: "{{ include "common.namespace" . }}-docker-registry-key"