Merge "clamphealth check"
[oom.git] / kubernetes / policy / charts / brmsgw / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - {{ .Values.global.pap.nameOverride }}
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-readiness
48       containers:
49       - command:
50         - /bin/bash
51         - ./do-start.sh
52         - brmsgw
53         name: {{ include "common.name" . }}
54         image: "{{ include "common.repository" . }}/{{ .Values.image }}"
55         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
56         ports:
57         - containerPort: {{ .Values.service.externalPort }}
58         {{- if eq .Values.liveness.enabled true }}
59         livenessProbe:
60           tcpSocket:
61             port: {{ .Values.service.externalPort }}
62           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
63           periodSeconds: {{ .Values.liveness.periodSeconds }}
64         {{- end }}
65         readinessProbe:
66           tcpSocket:
67             port: {{ .Values.service.externalPort }}
68           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
69           periodSeconds: {{ .Values.readiness.periodSeconds }}
70         volumeMounts:
71         - mountPath: /etc/localtime
72           name: localtime
73           readOnly: true
74         - mountPath: /tmp/policy-install/config/brmsgw-tweaks.sh
75           name: pe-brmsgw
76           subPath: brmsgw-tweaks.sh
77         - mountPath: /tmp/policy-install/config/brmsgw.conf
78           name: pe-brmsgw
79           subPath: brmsgw.conf
80         - mountPath: /tmp/policy-install/config/base.conf
81           name: pe
82           subPath: base.conf
83         - mountPath: /tmp/policy-install/do-start.sh
84           name: pe-scripts
85           subPath: do-start.sh
86         resources:
87 {{ toYaml .Values.resources | indent 12 }}
88       {{- if .Values.nodeSelector }}
89       nodeSelector:
90 {{ toYaml .Values.nodeSelector | indent 10 }}
91       {{- end -}}
92       {{- if .Values.affinity }}
93       affinity:
94 {{ toYaml .Values.affinity | indent 10 }}
95       {{- end }}
96       volumes:
97         - name: localtime
98           hostPath:
99             path: /etc/localtime
100         - name: pe
101           configMap:
102             name: {{ .Release.Name }}-pe-configmap
103             defaultMode: 0755
104         - name: pe-scripts
105           configMap:
106             name: {{ .Release.Name }}-pe-scripts-configmap
107             defaultMode: 0777
108         - name: pe-brmsgw
109           configMap:
110             name: {{ include "common.fullname" . }}-pe-configmap
111             defaultMode: 0755
112       imagePullSecrets:
113       - name: "{{ include "common.namespace" . }}-docker-registry-key"