[MSB] Make MSB compatible with Kubernetes v1.17
[oom.git] / kubernetes / msb / charts / kube2msb / templates / deployment.yaml
1 # 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.
14 apiVersion: apps/v1
15 kind: Deployment
16 metadata:
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: {{ include "common.release" . }}
23     heritage: {{ .Release.Service }}
24 spec:
25   selector:
26     matchLabels:
27       app: {{ include "common.name" . }}
28   replicas: {{ .Values.replicaCount }}
29   template:
30     metadata:
31       labels:
32         app: {{ include "common.name" . }}
33         release: {{ include "common.release" . }}
34       annotations:
35         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
36     spec:
37       serviceAccountName: msb
38       initContainers:
39       - command:
40         - /root/ready.py
41         args:
42         - --container-name
43         - msb-discovery
44         env:
45         - name: NAMESPACE
46           valueFrom:
47             fieldRef:
48               apiVersion: v1
49               fieldPath: metadata.namespace
50         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
51         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52         name: {{ include "common.name" . }}-readiness
53       containers:
54         - name: {{ include "common.name" . }}
55           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
56           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57           env:
58           - name: KUBE_MASTER_URL
59             value: {{ .Values.config.kubeMasterUrl }}
60           - name: MSB_URL
61             value: {{tpl $.Values.config.discoveryUrl .}}
62           volumeMounts:
63           - mountPath: /etc/localtime
64             name: localtime
65             readOnly: true
66           resources:
67 {{ include "common.resources" . | indent 12 }}
68         {{- if .Values.nodeSelector }}
69         nodeSelector:
70 {{ toYaml .Values.nodeSelector | indent 10 }}
71         {{- end -}}
72         {{- if .Values.affinity }}
73         affinity:
74 {{ toYaml .Values.affinity | indent 10 }}
75         {{- end }}
76       volumes:
77         - name: localtime
78           hostPath:
79             path: /etc/localtime
80       imagePullSecrets:
81       - name: "{{ include "common.namespace" . }}-docker-registry-key"