Merge "[CONSUL] Add limits to consul chart."
[oom.git] / kubernetes / msb / charts / msb-discovery / 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-consul
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           # disable liveness probe when breakpoints set in debugger
62           # so K8s doesn't restart unresponsive container
63           {{- if eq .Values.liveness.enabled true }}
64           livenessProbe:
65             tcpSocket:
66               port: {{ .Values.service.internalPort }}
67             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
68             periodSeconds: {{ .Values.liveness.periodSeconds }}
69           {{ end -}}
70           readinessProbe:
71             tcpSocket:
72               port: {{ .Values.service.internalPort }}
73             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74             periodSeconds: {{ .Values.readiness.periodSeconds }}
75           env:
76           - name: CONSUL_IP
77             value: msb-consul.{{ include "common.namespace" . }}
78           volumeMounts:
79           - mountPath: /etc/localtime
80             name: localtime
81             readOnly: true
82           - mountPath: /usr/local/discover-works/logs
83             name: {{ include "common.fullname" . }}-logs
84           resources:
85 {{ include "common.resources" . | indent 12 }}
86         {{- if .Values.nodeSelector }}
87         nodeSelector:
88 {{ toYaml .Values.nodeSelector | indent 10 }}
89         {{- end -}}
90         {{- if .Values.affinity }}
91         affinity:
92 {{ toYaml .Values.affinity | indent 10 }}
93         {{- end }}
94
95         # Filebeat sidecar container
96         - name: {{ include "common.name" . }}-filebeat-onap
97           image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
98           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
99           volumeMounts:
100           - name: {{ include "common.fullname" . }}-filebeat-conf
101             mountPath: /usr/share/filebeat/filebeat.yml
102             subPath: filebeat.yml
103           - name: {{ include "common.fullname" . }}-data-filebeat
104             mountPath: /usr/share/filebeat/data
105           - name: {{ include "common.fullname" . }}-logs
106             mountPath: /var/log/onap/msb/msb-discovery
107           - mountPath: /opt/ajsc/etc/config/logback.xml
108             name: {{ include "common.fullname" . }}-log-conf
109             subPath: logback.xml
110       volumes:
111         - name: {{ include "common.fullname" . }}-log-conf
112           configMap:
113             name: {{ include "common.fullname" . }}-log
114         - name: {{ include "common.fullname" . }}-filebeat-conf
115           configMap:
116             name: {{ include "common.release" . }}-msb-filebeat-configmap
117         - name: {{ include "common.fullname" . }}-data-filebeat
118           emptyDir: {}
119         - name:  {{ include "common.fullname" . }}-logs
120           emptyDir: {}
121         - name: localtime
122           hostPath:
123             path: /etc/localtime
124       imagePullSecrets:
125       - name: "{{ include "common.namespace" . }}-docker-registry-key"