blob: f7467cb621ded30a82bf583bb1400393e5c4dc86 [file] [log] [blame]
Mandeep Khindab1f9efe2018-03-28 19:01:55 +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
Mandeep Khindaa1047f42018-03-22 02:12:15 +000015apiVersion: 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 - name: {{ include "common.name" . }}-readiness
35 command:
36 - /root/ready.py
37 args:
38 - --container-name
39 - "sdc-es"
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 containers:
49 - name: {{ include "common.name" . }}
Mandeep Khinda51a8b1b2018-04-24 20:05:32 +000050 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Mandeep Khindaa1047f42018-03-22 02:12:15 +000051 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52 ports:
53 - containerPort: {{ .Values.service.internalPort }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000054 {{ if eq .Values.liveness.enabled true }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000055 livenessProbe:
56 tcpSocket:
57 port: {{ .Values.service.internalPort }}
58 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
59 periodSeconds: {{ .Values.liveness.periodSeconds }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000060 {{ end }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000061 readinessProbe:
62 tcpSocket:
63 port: {{ .Values.service.internalPort }}
64 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
65 periodSeconds: {{ .Values.readiness.periodSeconds }}
66 env:
67 - name: ENVNAME
68 value: {{ .Values.global.env.name }}
Mandeep Khinda403c1c12018-04-19 23:15:43 +000069 - name: NODE_OPTIONS
70 value: {{ .Values.config.nodeOptions }}
Mandeep Khindaa1047f42018-03-22 02:12:15 +000071 - name: HOST_IP
72 valueFrom:
73 fieldRef:
74 fieldPath: status.podIP
Mandeep Khindaa1047f42018-03-22 02:12:15 +000075 volumeMounts:
76 - name: {{ include "common.fullname" . }}-environments
77 mountPath: /root/chef-solo/environments/
78 - name: {{ include "common.fullname" . }}-localtime
79 mountPath: /etc/localtime
80 readOnly: true
81 resources:
82{{ toYaml .Values.resources | indent 12 }}
83 {{- if .Values.nodeSelector }}
84 nodeSelector:
85{{ toYaml .Values.nodeSelector | indent 10 }}
86 {{- end -}}
87 {{- if .Values.affinity }}
88 affinity:
89{{ toYaml .Values.affinity | indent 10 }}
90 {{- end }}
91 volumes:
Mandeep Khinda403c1c12018-04-19 23:15:43 +000092 - name: {{ include "common.fullname" . }}-localtime
93 hostPath:
94 path: /etc/localtime
95 - name: {{ include "common.fullname" . }}-environments
96 configMap:
97 name: {{ .Release.Name }}-sdc-environments-configmap
98 defaultMode: 0755
Mandeep Khindaa1047f42018-03-22 02:12:15 +000099 imagePullSecrets:
100 - name: "{{ include "common.namespace" . }}-docker-registry-key"