blob: 5bbffb58362e4fd487db0c3346b406f8db4aff3a [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
39 - "cd /config-input && for PFILE in `ls -1 *.conf`; do envsubst <${PFILE} >/config/${PFILE}; done"
40 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 }}
45 volumeMounts:
46 - mountPath: /config-input
47 name: pe
48 - mountPath: /config
49 name: pe-processed
50 image: "{{ .Values.global.envsubstImage }}"
51 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 name: {{ include "common.name" . }}-update-config
53 - command:
mayankg2703ced85142018-03-20 05:42:53 +000054 - /root/ready.py
55 args:
56 - --container-name
57 - {{ .Values.global.pap.nameOverride }}
58 env:
59 - name: NAMESPACE
60 valueFrom:
61 fieldRef:
62 apiVersion: v1
63 fieldPath: metadata.namespace
64 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
65 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
66 name: {{ include "common.name" . }}-readiness
67 containers:
68 - command:
69 - /bin/bash
70 - ./do-start.sh
71 - brmsgw
72 name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000073 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
mayankg2703ced85142018-03-20 05:42:53 +000074 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Krzysztof Opasiak44088f92020-04-01 00:28:14 +020075 env:
76 - name: JDBC_USER
77 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "login") | indent 10 }}
78 - name: JDBC_PASSWORD
79 {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-secret" "key" "password") | indent 10 }}
mayankg2703ced85142018-03-20 05:42:53 +000080 ports:
81 - containerPort: {{ .Values.service.externalPort }}
82 {{- if eq .Values.liveness.enabled true }}
83 livenessProbe:
84 tcpSocket:
85 port: {{ .Values.service.externalPort }}
86 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
87 periodSeconds: {{ .Values.liveness.periodSeconds }}
88 {{- end }}
89 readinessProbe:
90 tcpSocket:
91 port: {{ .Values.service.externalPort }}
92 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
93 periodSeconds: {{ .Values.readiness.periodSeconds }}
94 volumeMounts:
95 - mountPath: /etc/localtime
96 name: localtime
97 readOnly: true
mayankg2703583b43e2018-04-17 05:10:56 +000098 - mountPath: /tmp/policy-install/config/brmsgw-tweaks.sh
mayankg2703ced85142018-03-20 05:42:53 +000099 name: pe-brmsgw
mayankg2703583b43e2018-04-17 05:10:56 +0000100 subPath: brmsgw-tweaks.sh
101 - mountPath: /tmp/policy-install/config/brmsgw.conf
102 name: pe-brmsgw
103 subPath: brmsgw.conf
mayankg2703ced85142018-03-20 05:42:53 +0000104 - mountPath: /tmp/policy-install/config/base.conf
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +0200105 name: pe-processed
mayankg2703ced85142018-03-20 05:42:53 +0000106 subPath: base.conf
107 - mountPath: /tmp/policy-install/do-start.sh
108 name: pe-scripts
109 subPath: do-start.sh
110 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000111{{ include "common.resources" . | indent 12 }}
mayankg2703ced85142018-03-20 05:42:53 +0000112 {{- if .Values.nodeSelector }}
113 nodeSelector:
114{{ toYaml .Values.nodeSelector | indent 10 }}
115 {{- end -}}
116 {{- if .Values.affinity }}
117 affinity:
118{{ toYaml .Values.affinity | indent 10 }}
119 {{- end }}
120 volumes:
121 - name: localtime
122 hostPath:
123 path: /etc/localtime
124 - name: pe
125 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100126 name: {{ include "common.release" . }}-pe-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000127 defaultMode: 0755
128 - name: pe-scripts
129 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100130 name: {{ include "common.release" . }}-pe-scripts-configmap
mayankg2703ced85142018-03-20 05:42:53 +0000131 defaultMode: 0777
132 - name: pe-brmsgw
133 configMap:
134 name: {{ include "common.fullname" . }}-pe-configmap
135 defaultMode: 0755
Krzysztof Opasiak98a79cc2020-04-01 22:33:58 +0200136 - name: pe-processed
137 emptyDir:
138 medium: Memory
mayankg2703ced85142018-03-20 05:42:53 +0000139 imagePullSecrets:
140 - name: "{{ include "common.namespace" . }}-docker-registry-key"