Merge "[DCAEMOD] Uses new tpls for repos / images"
[oom.git] / kubernetes / clamp / components / clamp-dash-logstash / 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   selector:
31     matchLabels:
32       app: {{ include "common.name" . }}
33   template:
34     metadata:
35       labels:
36         app: {{ include "common.name" . }}
37         release: {{ include "common.release" . }}
38     spec:
39       initContainers:
40       - command:
41         - /app/ready.py
42         args:
43         - --container-name
44         - clamp-dash-es
45         env:
46         - name: NAMESPACE
47           valueFrom:
48             fieldRef:
49               apiVersion: v1
50               fieldPath: metadata.namespace
51         image: {{ include "repositoryGenerator.image.readiness" . }}
52         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53         name: {{ include "common.name" . }}-readiness
54 {{ include "common.certInitializer.initContainer" . | indent 6 }}
55       containers:
56         - name: {{ include "common.name" . }}
57           image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
58           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59           env:
60           - name: dmaap_consumer_group
61             value: "{{ .Values.config.dmaapConsumerGroup }}"
62           - name: dmaap_consumer_id
63             value: "{{ .Values.config.dmaapConsumerId }}"
64           - name: event_topic
65             value: "{{ .Values.config.eventTopic }}"
66           - name: notification_topic
67             value: "{{ .Values.config.notificationTopic }}"
68           - name: request_topic
69             value: "{{ .Values.config.requestTopic }}"
70           - name: dmaap_base_url
71             value: {{ ternary "https" "http" .Values.security.ssl.enabled }}://{{ .Values.config.dmaapHost }}.{{ include "common.namespace" . }}:{{ .Values.config.dmaapPort }}
72           - name: logstash_user
73             value: "{{ .Values.config.logstash_user }}"
74           - name: logstash_pwd
75             value: "{{ .Values.config.logstash_pwd }}"
76           - name: elasticsearch_base_url
77             value: "{{ ternary "https" "http" .Values.security.ssl.enabled }}://{{.Values.config.elasticsearchServiceName}}.{{.Release.Namespace}}.svc.cluster.local:{{.Values.config.elasticsearchPort}}"
78           ports:
79           - containerPort: {{ .Values.service.internalPort }}
80             name: {{ include "common.servicename" . }}
81           readinessProbe:
82             tcpSocket:
83               port: {{ .Values.service.internalPort }}
84             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
85             periodSeconds: {{ .Values.readiness.periodSeconds }}
86             timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
87 # disable liveness probe when breakpoints set in debugger
88           # so K8s doesn't restart unresponsive container
89           {{- if eq .Values.liveness.enabled true }}
90           livenessProbe:
91             tcpSocket:
92               port: {{ .Values.service.internalPort }}
93             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
94             periodSeconds: {{ .Values.liveness.periodSeconds }}
95             timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
96           {{ end -}}
97           volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
98           - mountPath: /etc/localtime
99             name: localtime
100             readOnly: true
101           - mountPath: /usr/share/logstash/config/logstash.yml
102             name: {{ include "common.fullname" . }}
103             subPath: logstash.yml
104           - mountPath: /usr/share/logstash/pipeline/logstash.conf
105             name: {{ include "common.fullname" . }}
106             subPath: pipeline.conf
107           resources:
108 {{ include "common.resources" . | indent 12 }}
109         {{- if .Values.nodeSelector }}
110         nodeSelector:
111 {{ toYaml .Values.nodeSelector | indent 10 }}
112         {{- end -}}
113         {{- if .Values.affinity }}
114         affinity:
115 {{ toYaml .Values.affinity | indent 10 }}
116         {{- end }}
117       volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
118         - name: localtime
119           hostPath:
120             path: /etc/localtime
121         - name: {{ include "common.fullname" . }}
122           configMap:
123             name: {{ include "common.fullname" . }}
124             items:
125             - key: logstash.yml
126               path: logstash.yml
127             - key: pipeline.conf
128               path: pipeline.conf
129       imagePullSecrets:
130       - name: "{{ include "common.namespace" . }}-docker-registry-key"