[DCAEMOD] Uses new tpls for repos / images
[oom.git] / kubernetes / log / components / log-kibana / templates / deployment.yaml
1 {{/*
2 # Copyright © 2017 Amdocs, Bell Canada
3 # Modifications Copyright © 2018 AT&T
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #       http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 */}}
17
18 apiVersion: apps/v1
19 kind: Deployment
20 metadata:
21   name: {{ include "common.fullname" . }}
22   namespace: {{ include "common.namespace" . }}
23   labels:
24     app: {{ include "common.name" . }}
25     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26     release: {{ include "common.release" . }}
27     heritage: {{ .Release.Service }}
28 spec:
29   replicas: {{ .Values.replicaCount }}
30   template:
31     metadata:
32       labels:
33         app: {{ include "common.name" . }}
34         release: {{ include "common.release" . }}
35     spec:
36       initContainers:
37       - command:
38         - /app/ready.py
39         args:
40         - --container-name
41         - log-elasticsearch
42         env:
43         - name: NAMESPACE
44           valueFrom:
45             fieldRef:
46               apiVersion: v1
47               fieldPath: metadata.namespace
48         image: {{ include "repositoryGenerator.image.readiness" . }}
49         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50         name: {{ include "common.name" . }}-readiness
51       - args:
52         - --input=/config/kibana-onboarding.json
53         - --output=http://{{.Values.config.elasticsearchServiceName}}.{{ include "common.namespace" . }}:{{.Values.config.elasticsearchPort}}/.kibana
54         env:
55         - name: NAMESPACE
56           valueFrom:
57             fieldRef:
58               apiVersion: v1
59               fieldPath: metadata.namespace
60         image: {{ include "repositoryGenerator.dockerHubRepository" . }}/{{ .Values.elasticdumpImage }}
61         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
62         name: {{ include "common.name" . }}-elasticdump
63         volumeMounts:
64           - mountPath: /config/kibana-onboarding.json
65             name: {{ include "common.fullname" . }}
66             subPath: kibana-onboarding.json
67       containers:
68         - name: {{ include "common.name" . }}
69           image: {{ include "repositoryGenerator.elasticRepository" . }}/{{ .Values.image }}
70           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
71           resources:
72 {{ include "common.resources" . | indent 12 }}
73           ports:
74           - containerPort: {{ .Values.service.internalPort }}
75             name: {{ .Values.service.name }}
76           readinessProbe:
77             httpGet:
78               path: "/"
79               port: {{ .Values.service.internalPort }}
80             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
81             periodSeconds: {{ .Values.readiness.periodSeconds }}
82             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
83 # disable liveness probe when breakpoints set in debugger
84           # so K8s doesn't restart unresponsive container
85           {{- if eq .Values.liveness.enabled true }}
86           livenessProbe:
87             httpGet:
88               path: "/"
89               port: {{ .Values.service.internalPort }}
90             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
91             periodSeconds: {{ .Values.liveness.periodSeconds }}
92             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
93           {{ end -}}
94           env:
95           volumeMounts:
96           - mountPath: /etc/localtime
97             name: localtime
98             readOnly: true
99           - mountPath: /usr/share/kibana/config/
100             name: {{ include "common.fullname" . }}
101       volumes:
102         - name: localtime
103           hostPath:
104             path: /etc/localtime
105         - name: {{ include "common.fullname" . }}
106           configMap:
107             name: {{ include "common.fullname" . }}
108             items:
109             - key: kibana.yml
110               path: kibana.yml
111             - key: kibana-onboarding.json
112               path: kibana-onboarding.json
113       imagePullSecrets:
114       - name: "{{ include "common.namespace" . }}-docker-registry-key"