[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / clamp / components / clamp-dash-kibana / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
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   replicas: {{ .Values.replicaCount }}
28   selector:
29     matchLabels:
30       app: {{ include "common.name" . }}
31   template:
32     metadata:
33       labels:
34         app: {{ include "common.name" . }}
35         release: {{ include "common.release" . }}
36     spec:
37       initContainers:
38       - command:
39         - /app/ready.py
40         args:
41         - --container-name
42         - clamp-dash-es
43         env:
44         - name: NAMESPACE
45           valueFrom:
46             fieldRef:
47               apiVersion: v1
48               fieldPath: metadata.namespace
49         image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
50         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51         name: {{ include "common.name" . }}-readiness
52 {{ include "common.certInitializer.initContainer" . | indent 6 }}
53       containers:
54         - name: {{ include "common.name" . }}
55           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
56           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57           ports:
58           - containerPort: {{ .Values.service.internalPort }}
59             name: {{ include "common.servicename" . }}
60           readinessProbe:
61             tcpSocket:
62               port: {{ .Values.service.internalPort }}
63             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
64             periodSeconds: {{ .Values.readiness.periodSeconds }}
65 # disable liveness probe when breakpoints set in debugger
66           # so K8s doesn't restart unresponsive container
67           {{- if eq .Values.liveness.enabled true }}
68           livenessProbe:
69             tcpSocket:
70               port: {{ .Values.service.internalPort }}
71             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
72             periodSeconds: {{ .Values.liveness.periodSeconds }}
73           {{ end -}}
74           env:
75           - name: elasticsearch_base_url
76             value: "{{ternary "https" "http" .Values.security.ssl.enabled}}://{{.Values.config.elasticsearchServiceName}}.{{.Release.Namespace}}.svc.cluster.local:{{.Values.config.elasticsearchPort}}"
77           volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
78           - mountPath: /etc/localtime
79             name: localtime
80             readOnly: true
81           - mountPath: /usr/share/kibana/config/kibana.yml
82             name: {{ include "common.fullname" . }}
83             subPath: kibana.yml
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       volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
95         - name: localtime
96           hostPath:
97             path: /etc/localtime
98         - name: {{ include "common.fullname" . }}
99           configMap:
100             name: {{ include "common.fullname" . }}
101             items:
102             - key: kibana.yml
103               path: kibana.yml
104       imagePullSecrets:
105       - name: "{{ include "common.namespace" . }}-docker-registry-key"