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