8d9863784f48c2593a9f922c5e2f93affd41abf6
[oom.git] / kubernetes / policy / charts / brmsgw / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
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
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
19   name: {{ include "common.fullname" . }}
20   namespace: {{ include "common.namespace" . }}
21   labels:
22     app: {{ include "common.name" . }}
23     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
24     release: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ include "common.release" . }}
33     spec:
34       initContainers:
35       - command:
36         - sh
37         args:
38         - -c
39         - "cd /config-input && for PFILE in `find . -not -type d | grep -v -F ..`; do envsubst <${PFILE} >/config/${PFILE}; chmod 0755 /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         - 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:
58         - mountPath: /config-input/pe
59           name: pe-input
60         - mountPath: /config-input/pe-brmsgw
61           name: pe-brmsgw-input
62         - mountPath: /config/pe
63           name: pe
64         - mountPath: /config/pe-brmsgw
65           name: pe-brmsgw
66         image: "{{ .Values.global.envsubstImage }}"
67         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68         name: {{ include "common.name" . }}-update-config
69       - command:
70         - /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" . }}
89         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
90         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
91         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 }}
96         - 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 }}
108         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
126         - mountPath: /tmp/policy-install/config/brmsgw-tweaks.sh
127           name: pe-brmsgw
128           subPath: brmsgw-tweaks.sh
129         - mountPath: /tmp/policy-install/config/brmsgw.conf
130           name: pe-brmsgw
131           subPath: brmsgw.conf
132         - mountPath: /tmp/policy-install/config/base.conf
133           name: pe
134           subPath: base.conf
135         - mountPath: /tmp/policy-install/do-start.sh
136           name: pe-scripts
137           subPath: do-start.sh
138         resources:
139 {{ include "common.resources" . | indent 12 }}
140       {{- 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
152         - name: pe-input
153           configMap:
154             name: {{ include "common.release" . }}-pe-configmap
155             defaultMode: 0755
156         - name: pe-scripts
157           configMap:
158             name: {{ include "common.release" . }}-pe-scripts-configmap
159             defaultMode: 0777
160         - name: pe-brmsgw-input
161           configMap:
162             name: {{ include "common.fullname" . }}-pe-configmap
163             defaultMode: 0755
164         - name: pe
165           emptyDir:
166             medium: Memory
167         - name: pe-brmsgw
168           emptyDir:
169             medium: Memory
170       imagePullSecrets:
171       - name: "{{ include "common.namespace" . }}-docker-registry-key"