blob: c61c41fc85e24eac5b1ef14e95af52086eb61f14 [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
kwasiel59cc6a42020-07-23 10:02:49 +000016apiVersion: apps/v1
priyanshua1b061392018-05-29 12:50:14 +053017kind: 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:
kwasiel59cc6a42020-07-23 10:02:49 +000027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
priyanshua1b061392018-05-29 12:50:14 +053030 replicas: {{ .Values.replicaCount }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
priyanshua1b061392018-05-29 12:50:14 +053036 spec:
ChrisC742a7b22020-09-04 11:29:57 +020037 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
priyanshu617e90b2019-03-14 12:56:55 +053038 {{- if .Values.initJob.enabled }}
priyanshua1b061392018-05-29 12:50:14 +053039 - name: {{ include "common.name" . }}-job-completion
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020040 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
priyanshua1b061392018-05-29 12:50:14 +053041 imagePullPolicy: "{{ .Values.global.pullPolicy | default .Values.pullPolicy }}"
42 command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020043 - /app/ready.py
priyanshua1b061392018-05-29 12:50:14 +053044 args:
45 - --job-name
priyanshu3af9db62018-08-16 16:23:52 +053046 - {{ include "common.fullname" . }}-workflow-init
priyanshua1b061392018-05-29 12:50:14 +053047 env:
48 - name: NAMESPACE
49 valueFrom:
50 fieldRef:
51 apiVersion: v1
52 fieldPath: metadata.namespace
ChrisC32172342020-10-02 16:39:13 +020053 resources:
54 limits:
55 cpu: 100m
56 memory: 100Mi
57 requests:
58 cpu: 3m
59 memory: 20Mi
priyanshu9be63472019-03-13 14:43:36 +053060 {{ end }}
priyanshua1b061392018-05-29 12:50:14 +053061 containers:
62 - name: {{ include "common.name" . }}
63 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
64 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
ChrisC742a7b22020-09-04 11:29:57 +020065 {{- if .Values.global.aafEnabled }}
66 command:
67 - sh
68 args:
69 - "-c"
70 - |
71 export $(grep '^c' {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
72 export SERVER_SSL_KEY_PASSWORD=$cadi_keystore_password_p12
73 export KEYMANAGER_PASS=$cadi_keystore_password_p12
74 export SERVER_SSL_TRUST_PASSWORD=$cadi_truststore_password
75 export SERVER_SSL_KEYSTORE_PATH={{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.keystoreFile }}
76 export SERVER_SSL_TRUSTSTORE_PATH={{ .Values.certInitializer.credsPath }}/{{ .Values.certInitializer.truststoreFile }}
77 ./startup.sh
78 {{- end }}
priyanshua1b061392018-05-29 12:50:14 +053079 ports:
IlanaPc80bff92019-11-18 21:10:08 +020080 - containerPort: {{ template "wfd-be.internalPort" . }}
priyanshua1b061392018-05-29 12:50:14 +053081 # disable liveness probe when breakpoints set in debugger
82 # so K8s doesn't restart unresponsive container
83 {{ if .Values.liveness.enabled }}
84 livenessProbe:
85 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +020086 port: {{ template "wfd-be.internalPort" . }}
priyanshua1b061392018-05-29 12:50:14 +053087 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
88 periodSeconds: {{ .Values.liveness.periodSeconds }}
89 {{ end }}
90 readinessProbe:
91 tcpSocket:
IlanaPc80bff92019-11-18 21:10:08 +020092 port: {{ template "wfd-be.internalPort" . }}
priyanshua1b061392018-05-29 12:50:14 +053093 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
94 periodSeconds: {{ .Values.readiness.periodSeconds }}
95 env:
96 - name: JAVA_OPTIONS
97 value: {{ .Values.config.javaOptions }}
priyanshu3af9db62018-08-16 16:23:52 +053098 - name: CS_HOSTS
Mahendra Raghuwanshi35f83f52019-03-20 10:42:49 +000099 value: "{{ .Values.global.cassandra.serviceName }}"
priyanshu3af9db62018-08-16 16:23:52 +0530100 - name: CS_PORT
101 value: "{{ .Values.config.cassandraClientPort }}"
priyanshubd7fbe22019-03-20 12:45:21 +0530102 - name: CS_AUTHENTICATE
103 value: "{{ .Values.config.cassandraAuthenticationEnabled }}"
priyanshu3af9db62018-08-16 16:23:52 +0530104 - name: CS_USER
105 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100106 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_user}
priyanshu3af9db62018-08-16 16:23:52 +0530107 - name: CS_PASSWORD
108 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100109 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: sdc_password}
priyanshubd7fbe22019-03-20 12:45:21 +0530110 - name: CS_SSL_ENABLED
111 value: "{{ .Values.config.cassandraSSLEnabled }}"
112 - name: CS_TRUST_STORE_PATH
113 value: "{{ .Values.config.cassandraTrustStorePath }}"
114 - name: CS_TRUST_STORE_PASSWORD
IlanaPc80bff92019-11-18 21:10:08 +0200115 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100116 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: cs_truststore_password}
priyanshu3af9db62018-08-16 16:23:52 +0530117 - name: SDC_PROTOCOL
118 value: "{{ .Values.config.sdcProtocol }}"
119 - name: SDC_ENDPOINT
120 value: "{{ .Values.config.sdcEndpoint }}"
priyanshuc00acbb2018-09-06 11:29:23 +0530121 - name: SDC_USER
122 value: "{{ .Values.config.sdcExternalUser }}"
123 - name: SDC_PASSWORD
IlanaPc80bff92019-11-18 21:10:08 +0200124 valueFrom:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100125 secretKeyRef: {name: {{ include "common.release" . }}-sdc-cs-secrets, key: wf_external_user_password}
priyanshubd7fbe22019-03-20 12:45:21 +0530126 - name: SERVER_SSL_ENABLED
127 value: "{{ .Values.config.serverSSLEnabled }}"
128 - name: SERVER_SSL_KEYSTORE_TYPE
priyanshu5698c832019-03-26 18:02:33 +0530129 value: "{{ .Values.config.serverSSLKeyStoreType }}"
IlanaPc80bff92019-11-18 21:10:08 +0200130 - name: SERVER_SSL_TRUSTSTORE_TYPE
131 value: "{{ .Values.config.serverSSLTrustStoreType }}"
ChrisC742a7b22020-09-04 11:29:57 +0200132 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
ChrisC32172342020-10-02 16:39:13 +0200133 resources: {{ include "common.resources" . | nindent 12 }}
ChrisC742a7b22020-09-04 11:29:57 +0200134 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
priyanshua1b061392018-05-29 12:50:14 +0530135 imagePullSecrets:
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +0000136 - name: "{{ include "common.namespace" . }}-docker-registry-key"