blob: b5ba77baf3431d370f95814efaf7a33492917e8f [file] [log] [blame]
mayankg2703ced85142018-03-20 05:42:53 +00001# Copyright © 2017 Amdocs, Bell Canada
Durgpal7ad40692018-08-03 07:28:36 +00002# Modifications Copyright © 2018 AT&T
mayankg2703ced85142018-03-20 05:42:53 +00003#
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
16apiVersion: extensions/v1beta1
17kind: Deployment
18metadata:
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: {{ .Release.Name }}
25 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
32 release: {{ .Release.Name }}
33 spec:
34 initContainers:
35 - command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - {{ .Values.global.pap.nameOverride }}
40 env:
41 - name: NAMESPACE
42 valueFrom:
43 fieldRef:
44 apiVersion: v1
45 fieldPath: metadata.namespace
46 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
47 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48 name: {{ include "common.name" . }}-readiness
49 containers:
50 - command:
51 - /bin/bash
52 - ./do-start.sh
53 - brmsgw
54 name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000055 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
mayankg2703ced85142018-03-20 05:42:53 +000056 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57 ports:
58 - containerPort: {{ .Values.service.externalPort }}
59 {{- if eq .Values.liveness.enabled true }}
60 livenessProbe:
61 tcpSocket:
62 port: {{ .Values.service.externalPort }}
63 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
64 periodSeconds: {{ .Values.liveness.periodSeconds }}
65 {{- end }}
66 readinessProbe:
67 tcpSocket:
68 port: {{ .Values.service.externalPort }}
69 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
70 periodSeconds: {{ .Values.readiness.periodSeconds }}
71 volumeMounts:
72 - mountPath: /etc/localtime
73 name: localtime
74 readOnly: true
mayankg2703583b43e2018-04-17 05:10:56 +000075 - mountPath: /tmp/policy-install/config/brmsgw-tweaks.sh
mayankg2703ced85142018-03-20 05:42:53 +000076 name: pe-brmsgw
mayankg2703583b43e2018-04-17 05:10:56 +000077 subPath: brmsgw-tweaks.sh
78 - mountPath: /tmp/policy-install/config/brmsgw.conf
79 name: pe-brmsgw
80 subPath: brmsgw.conf
mayankg2703ced85142018-03-20 05:42:53 +000081 - mountPath: /tmp/policy-install/config/base.conf
82 name: pe
83 subPath: base.conf
84 - mountPath: /tmp/policy-install/do-start.sh
85 name: pe-scripts
86 subPath: do-start.sh
87 resources:
88{{ toYaml .Values.resources | indent 12 }}
89 {{- if .Values.nodeSelector }}
90 nodeSelector:
91{{ toYaml .Values.nodeSelector | indent 10 }}
92 {{- end -}}
93 {{- if .Values.affinity }}
94 affinity:
95{{ toYaml .Values.affinity | indent 10 }}
96 {{- end }}
97 volumes:
98 - name: localtime
99 hostPath:
100 path: /etc/localtime
101 - name: pe
102 configMap:
103 name: {{ .Release.Name }}-pe-configmap
104 defaultMode: 0755
105 - name: pe-scripts
106 configMap:
107 name: {{ .Release.Name }}-pe-scripts-configmap
108 defaultMode: 0777
109 - name: pe-brmsgw
110 configMap:
111 name: {{ include "common.fullname" . }}-pe-configmap
112 defaultMode: 0755
113 imagePullSecrets:
114 - name: "{{ include "common.namespace" . }}-docker-registry-key"