blob: cd715e46069c8cf3f8323ac357cb638b9e62e72f [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" . }}
54 image: "{{ .Values.global.repository | default .Values.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
75 name: pe-brmsgw
76 - mountPath: /tmp/policy-install/config/base.conf
77 name: pe
78 subPath: base.conf
79 - mountPath: /tmp/policy-install/do-start.sh
80 name: pe-scripts
81 subPath: do-start.sh
82 resources:
83{{ toYaml .Values.resources | indent 12 }}
84 {{- if .Values.nodeSelector }}
85 nodeSelector:
86{{ toYaml .Values.nodeSelector | indent 10 }}
87 {{- end -}}
88 {{- if .Values.affinity }}
89 affinity:
90{{ toYaml .Values.affinity | indent 10 }}
91 {{- end }}
92 volumes:
93 - name: localtime
94 hostPath:
95 path: /etc/localtime
96 - name: pe
97 configMap:
98 name: {{ .Release.Name }}-pe-configmap
99 defaultMode: 0755
100 - name: pe-scripts
101 configMap:
102 name: {{ .Release.Name }}-pe-scripts-configmap
103 defaultMode: 0777
104 - name: pe-brmsgw
105 configMap:
106 name: {{ include "common.fullname" . }}-pe-configmap
107 defaultMode: 0755
108 imagePullSecrets:
109 - name: "{{ include "common.namespace" . }}-docker-registry-key"