5bbffb58362e4fd487db0c3346b406f8db4aff3a
[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 `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:
54         - /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" . }}
73         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
74         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
75         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 }}
80         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
98         - mountPath: /tmp/policy-install/config/brmsgw-tweaks.sh
99           name: pe-brmsgw
100           subPath: brmsgw-tweaks.sh
101         - mountPath: /tmp/policy-install/config/brmsgw.conf
102           name: pe-brmsgw
103           subPath: brmsgw.conf
104         - mountPath: /tmp/policy-install/config/base.conf
105           name: pe-processed
106           subPath: base.conf
107         - mountPath: /tmp/policy-install/do-start.sh
108           name: pe-scripts
109           subPath: do-start.sh
110         resources:
111 {{ include "common.resources" . | indent 12 }}
112       {{- 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:
126             name: {{ include "common.release" . }}-pe-configmap
127             defaultMode: 0755
128         - name: pe-scripts
129           configMap:
130             name: {{ include "common.release" . }}-pe-scripts-configmap
131             defaultMode: 0777
132         - name: pe-brmsgw
133           configMap:
134             name: {{ include "common.fullname" . }}-pe-configmap
135             defaultMode: 0755
136         - name: pe-processed
137           emptyDir:
138             medium: Memory
139       imagePullSecrets:
140       - name: "{{ include "common.namespace" . }}-docker-registry-key"