blob: 8d9863784f48c2593a9f922c5e2f93affd41abf6 [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 AT&T
mayankg2703ced85142018-03-20 05:42:53 +00003#
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" . }}
mayankg2703ced85142018-03-20 05:42:53 +000025 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" . }}
mayankg2703ced85142018-03-20 05:42:53 +000033 spec:
34 initContainers:
35 - command:
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020036 - sh
37 args:
38 - -c
jhh0ee08c02020-04-27 17:12:43 -050039 - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; chmod 0755 /config/${PFILE}; done"
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020040 env:
41 - name: JDBC_USER
42 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
43 - name: JDBC_PASSWORD
44 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
Dominik Mizynd1943c02020-04-16 10:41:01 +020045 - name: PDP_HTTP_USER_ID
46 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pdp-http-creds" "key" "login") | indent 10 }}
47 - name: PDP_HTTP_PASSWORD
48 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pdp-http-creds" "key" "password") | indent 10 }}
49 - name: PDP_PAP_PDP_HTTP_USER_ID
50 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-http-creds" "key" "login") | indent 10 }}
51 - name: PDP_PAP_PDP_HTTP_PASSWORD
52 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-http-creds" "key" "password") | indent 10 }}
53 - name: REPOSITORY_USERNAME
54 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "nexus-creds" "key" "login") | indent 10 }}
55 - name: REPOSITORY_PASSWORD
56 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "nexus-creds" "key" "password") | indent 10 }}
57 volumeMounts:
jhh0ee08c02020-04-27 17:12:43 -050058 - mountPath: /config-input/pe
59 name: pe-input
60 - mountPath: /config-input/pe-brmsgw
61 name: pe-brmsgw-input
62 - mountPath: /config/pe
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020063 name: pe
jhh0ee08c02020-04-27 17:12:43 -050064 - mountPath: /config/pe-brmsgw
65 name: pe-brmsgw
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +020066 image: "{{ .Values.global.envsubstImage }}"
67 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68 name: {{ include "common.name" . }}-update-config
69 - command:
mayankg2703ced85142018-03-20 05:42:53 +000070 - /root/ready.py
71 args:
72 - --container-name
73 - {{ .Values.global.pap.nameOverride }}
74 env:
75 - name: NAMESPACE
76 valueFrom:
77 fieldRef:
78 apiVersion: v1
79 fieldPath: metadata.namespace
80 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
81 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82 name: {{ include "common.name" . }}-readiness
83 containers:
84 - command:
85 - /bin/bash
86 - ./do-start.sh
87 - brmsgw
88 name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000089 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
mayankg2703ced85142018-03-20 05:42:53 +000090 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Krzysztof Opasiak44088f92020-04-01 00:28:14 +020091 env:
92 - name: JDBC_USER
93 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
94 - name: JDBC_PASSWORD
95 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
Dominik Mizynd1943c02020-04-16 10:41:01 +020096 - name: PDP_HTTP_USER_ID
97 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pdp-http-creds" "key" "login") | indent 10 }}
98 - name: PDP_HTTP_PASSWORD
99 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pdp-http-creds" "key" "password") | indent 10 }}
100 - name: PDP_PAP_PDP_HTTP_USER_ID
101 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-http-creds" "key" "login") | indent 10 }}
102 - name: PDP_PAP_PDP_HTTP_PASSWORD
103 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "pap-http-creds" "key" "password") | indent 10 }}
104 - name: REPOSITORY_USERNAME
105 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "nexus-creds" "key" "login") | indent 10 }}
106 - name: REPOSITORY_PASSWORD
107 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "nexus-creds" "key" "password") | indent 10 }}
mayankg2703ced85142018-03-20 05:42:53 +0000108 ports:
109 - containerPort: {{ .Values.service.externalPort }}
110 {{- if eq .Values.liveness.enabled true }}
111 livenessProbe:
112 tcpSocket:
113 port: {{ .Values.service.externalPort }}
114 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
115 periodSeconds: {{ .Values.liveness.periodSeconds }}
116 {{- end }}
117 readinessProbe:
118 tcpSocket:
119 port: {{ .Values.service.externalPort }}
120 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
121 periodSeconds: {{ .Values.readiness.periodSeconds }}
122 volumeMounts:
123 - mountPath: /etc/localtime
124 name: localtime
125 readOnly: true
mayankg2703583b43e2018-04-17 05:10:56 +0000126 - mountPath: /tmp/policy-install/config/brmsgw-tweaks.sh
mayankg2703ced85142018-03-20 05:42:53 +0000127 name: pe-brmsgw
mayankg2703583b43e2018-04-17 05:10:56 +0000128 subPath: brmsgw-tweaks.sh
129 - mountPath: /tmp/policy-install/config/brmsgw.conf
130 name: pe-brmsgw
131 subPath: brmsgw.conf
mayankg2703ced85142018-03-20 05:42:53 +0000132 - mountPath: /tmp/policy-install/config/base.conf
jhh0ee08c02020-04-27 17:12:43 -0500133 name: pe
mayankg2703ced85142018-03-20 05:42:53 +0000134 subPath: base.conf
135 - mountPath: /tmp/policy-install/do-start.sh
136 name: pe-scripts
137 subPath: do-start.sh
138 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000139{{ include "common.resources" . | indent 12 }}
mayankg2703ced85142018-03-20 05:42:53 +0000140 {{- if .Values.nodeSelector }}
141 nodeSelector:
142{{ toYaml .Values.nodeSelector | indent 10 }}
143 {{- end -}}
144 {{- if .Values.affinity }}
145 affinity:
146{{ toYaml .Values.affinity | indent 10 }}
147 {{- end }}
148 volumes:
149 - name: localtime
150 hostPath:
151 path: /etc/localtime
jhh0ee08c02020-04-27 17:12:43 -0500152 - name: pe-input
mayankg2703ced85142018-03-20 05:42:53 +0000153 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100154 name: {{ include "common.release" . }}-pe-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000155 defaultMode: 0755
156 - name: pe-scripts
157 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100158 name: {{ include "common.release" . }}-pe-scripts-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000159 defaultMode: 0777
jhh0ee08c02020-04-27 17:12:43 -0500160 - name: pe-brmsgw-input
mayankg2703ced85142018-03-20 05:42:53 +0000161 configMap:
162 name: {{ include "common.fullname" . }}-pe-configmap
163 defaultMode: 0755
jhh0ee08c02020-04-27 17:12:43 -0500164 - name: pe
165 emptyDir:
166 medium: Memory
167 - name: pe-brmsgw
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +0200168 emptyDir:
169 medium: Memory
mayankg2703ced85142018-03-20 05:42:53 +0000170 imagePullSecrets:
171 - name: "{{ include "common.namespace" . }}-docker-registry-key"