blob: 455eae003a529f4828f94e6f1b27eadd2a2bb83b [file] [log] [blame]
Prateekinlinux445a18e2018-08-01 06:48:33 +00001# Copyright © 2018 Amdocs, Bell Canada , ZTE
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.
BorislavG0433c912018-03-21 18:35:30 +020014apiVersion: extensions/v1beta1
15kind: Deployment
16metadata:
17 name: {{ include "common.fullname" . }}
18 namespace: {{ include "common.namespace" . }}
19 labels:
20 app: {{ include "common.name" . }}
21 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
22 release: {{ .Release.Name }}
23 heritage: {{ .Release.Service }}
24spec:
25 replicas: {{ .Values.replicaCount }}
26 template:
27 metadata:
28 labels:
29 app: {{ include "common.name" . }}
30 release: {{ .Release.Name }}
Huabing Zhao408a87d2018-08-03 06:35:41 +000031 annotations:
32 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020033 spec:
Huabing Zhao8f7cc812018-08-08 06:27:37 +000034 serviceAccountName: msb
BorislavG0433c912018-03-21 18:35:30 +020035 initContainers:
36 - command:
37 - /root/ready.py
38 args:
39 - --container-name
40 - msb-discovery
41 env:
42 - name: NAMESPACE
43 valueFrom:
44 fieldRef:
45 apiVersion: v1
46 fieldPath: metadata.namespace
47 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
48 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
49 name: {{ include "common.name" . }}-readiness
50 containers:
51 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000052 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
BorislavG0433c912018-03-21 18:35:30 +020053 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 env:
55 - name: KUBE_MASTER_URL
56 value: {{ .Values.config.kubeMasterUrl }}
57 - name: MSB_URL
58 value: {{tpl $.Values.config.discoveryUrl .}}
59 volumeMounts:
60 - mountPath: /etc/localtime
61 name: localtime
62 readOnly: true
63 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000064{{ include "common.resources" . | indent 12 }}
BorislavG0433c912018-03-21 18:35:30 +020065 {{- if .Values.nodeSelector }}
66 nodeSelector:
67{{ toYaml .Values.nodeSelector | indent 10 }}
68 {{- end -}}
69 {{- if .Values.affinity }}
70 affinity:
71{{ toYaml .Values.affinity | indent 10 }}
72 {{- end }}
73 volumes:
74 - name: localtime
75 hostPath:
76 path: /etc/localtime
77 imagePullSecrets:
78 - name: "{{ include "common.namespace" . }}-docker-registry-key"