Merge "[CONSUL] Add limits to consul chart."
[oom.git] / kubernetes / msb / charts / msb-eag / templates / deployment.yaml
1 {{/*
2 # Copyright © 2018 Amdocs, Bell Canada , ZTE
3 #
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 */}}
16 apiVersion: apps/v1
17 kind: Deployment
18 metadata:
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: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   selector:
28     matchLabels:
29       app: {{ include "common.name" . }}
30   replicas: {{ .Values.replicaCount }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36       annotations:
37         sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
38     spec:
39       serviceAccountName: msb
40       initContainers:
41       - command:
42         - /app/ready.py
43         args:
44         - --container-name
45         - msb-discovery
46         env:
47         - name: NAMESPACE
48           valueFrom:
49             fieldRef:
50               apiVersion: v1
51               fieldPath: metadata.namespace
52         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
53         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54         name: {{ include "common.name" . }}-readiness
55       containers:
56         - name: {{ include "common.name" . }}
57           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
58           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59           ports:
60           - containerPort: {{ .Values.service.internalPort }}
61             name: {{ .Values.service.name }}
62           - containerPort: {{ .Values.service.internalPortHttps }}
63             name: {{ .Values.service.name }}-https
64           # disable liveness probe when breakpoints set in debugger
65           # so K8s doesn't restart unresponsive container
66           {{- if eq .Values.liveness.enabled true }}
67           livenessProbe:
68             tcpSocket:
69               port: {{ .Values.service.internalPort }}
70             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
71             periodSeconds: {{ .Values.liveness.periodSeconds }}
72           {{ end -}}
73           readinessProbe:
74             tcpSocket:
75               port: {{ .Values.service.internalPort }}
76             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
77             periodSeconds: {{ .Values.readiness.periodSeconds }}
78           env:
79           - name: CONSUL_IP
80             value: msb-consul.{{ include "common.namespace" . }}
81           - name: SDCLIENT_IP
82             value: msb-discovery.{{ include "common.namespace" . }}
83           - name: ROUTE_LABELS
84             value: {{ .Values.config.routeLabels }}
85           volumeMounts:
86           - mountPath: /etc/localtime
87             name: localtime
88             readOnly: true
89           - name: {{ include "common.fullname" . }}-cert
90             mountPath: /usr/local/openresty/nginx/ssl/cert/cert.crt
91             readOnly: true
92             subPath: "cert.crt"
93           - name: {{ include "common.fullname" . }}-cert
94             mountPath: /usr/local/openresty/nginx/html/cert/ca.crt
95             readOnly: true
96             subPath: "ca.crt"
97           - mountPath: /usr/local/apiroute-works/logs
98             name: {{ include "common.fullname" . }}-logs
99           resources:
100 {{ include "common.resources" . | indent 12 }}
101         {{- if .Values.nodeSelector }}
102         nodeSelector:
103 {{ toYaml .Values.nodeSelector | indent 10 }}
104         {{- end -}}
105         {{- if .Values.affinity }}
106         affinity:
107 {{ toYaml .Values.affinity | indent 10 }}
108         {{- end }}
109         # side car containers
110         - name: filebeat-onap
111           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
112           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
113           volumeMounts:
114           - name: {{ include "common.fullname" . }}-filebeat-conf
115             mountPath: /usr/share/filebeat/filebeat.yml
116             subPath: filebeat.yml
117           - name: {{ include "common.fullname" . }}-data-filebeat
118             mountPath: /usr/share/filebeat/data
119           - name: {{ include "common.fullname" . }}-logs
120             mountPath: /var/log/onap/msb/msb-eag
121           - mountPath: /opt/ajsc/etc/config/logback.xml
122             name: {{ include "common.fullname" . }}-log-conf
123             subPath: logback.xml
124       volumes:
125         - name: {{ include "common.fullname" . }}-cert
126           secret:
127             secretName: {{ include "common.release" . }}-msb-https-cert
128         - name: {{ include "common.fullname" . }}-log-conf
129           configMap:
130             name: {{ include "common.fullname" . }}-log
131         - name: {{ include "common.fullname" . }}-filebeat-conf
132           configMap:
133             name: {{ include "common.release" . }}-msb-filebeat-configmap
134         - name: {{ include "common.fullname" . }}-data-filebeat
135           emptyDir: {}
136         - name:  {{ include "common.fullname" . }}-logs
137           emptyDir: {}
138         - name: localtime
139           hostPath:
140             path: /etc/localtime
141       imagePullSecrets:
142       - name: "{{ include "common.namespace" . }}-docker-registry-key"