blob: fabef681f42d85bbbceaa62c95695cb3250dbf59 [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# 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
15apiVersion: extensions/v1beta1
16kind: Deployment
17metadata:
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 }}
25spec:
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" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000054 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
mayankg2703ced85142018-03-20 05:42:53 +000055 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
mayankg2703583b43e2018-04-17 05:10:56 +000074 - mountPath: /tmp/policy-install/config/brmsgw-tweaks.sh
mayankg2703ced85142018-03-20 05:42:53 +000075 name: pe-brmsgw
mayankg2703583b43e2018-04-17 05:10:56 +000076 subPath: brmsgw-tweaks.sh
77 - mountPath: /tmp/policy-install/config/brmsgw.conf
78 name: pe-brmsgw
79 subPath: brmsgw.conf
mayankg2703ced85142018-03-20 05:42:53 +000080 - 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"