blob: 887f722179b95f12a62fddd6025188cc06607bcf [file] [log] [blame]
ac25508ac97172018-04-18 14:23:17 +02001# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00002# Modifications Copyright © 2018 AT&T
ac25508ac97172018-04-18 14:23:17 +02003#
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.
ac25508ac97172018-04-18 14:23:17 +020015
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020016apiVersion: apps/v1
ac25508ac97172018-04-18 14:23:17 +020017kind: Deployment
18metadata:
19 name: {{ include "common.fullname" . }}
20 namespace: {{ include "common.namespace" . }}
21 labels:
22 app: {{ include "common.name" . }}
23 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
ac25508ac97172018-04-18 14:23:17 +020025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
Magdalena_Biernacka7d0dcbe2020-07-12 23:21:43 +020028 selector:
29 matchLabels:
30 app: {{ include "common.name" . }}
ac25508ac97172018-04-18 14:23:17 +020031 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
ac25508ac97172018-04-18 14:23:17 +020036 spec:
37 initContainers:
38 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020039 - /app/ready.py
ac25508ac97172018-04-18 14:23:17 +020040 args:
41 - --container-name
42 - clamp-dash-es
43 env:
44 - name: NAMESPACE
45 valueFrom:
46 fieldRef:
47 apiVersion: v1
48 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020049 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
ac25508ac97172018-04-18 14:23:17 +020050 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
51 name: {{ include "common.name" . }}-readiness
osgn422w79814452020-09-25 02:28:02 +020052{{ include "common.certInitializer.initContainer" . | indent 6 }}
ac25508ac97172018-04-18 14:23:17 +020053 containers:
54 - name: {{ include "common.name" . }}
Julien Barboted56cca2018-10-22 17:53:07 +020055 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
ac25508ac97172018-04-18 14:23:17 +020056 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
57 env:
58 - name: dmaap_consumer_group
59 value: "{{ .Values.config.dmaapConsumerGroup }}"
60 - name: dmaap_consumer_id
61 value: "{{ .Values.config.dmaapConsumerId }}"
62 - name: event_topic
63 value: "{{ .Values.config.eventTopic }}"
64 - name: notification_topic
65 value: "{{ .Values.config.notificationTopic }}"
66 - name: request_topic
67 value: "{{ .Values.config.requestTopic }}"
68 - name: dmaap_base_url
osgn422wb561a592020-02-11 15:50:21 +010069 value: {{ ternary "https" "http" .Values.security.ssl.enabled }}://{{ .Values.config.dmaapHost }}.{{ include "common.namespace" . }}:{{ .Values.config.dmaapPort }}
osgn422w6e663e42019-08-02 11:31:11 +020070 - name: logstash_user
71 value: "{{ .Values.config.logstash_user }}"
72 - name: logstash_pwd
73 value: "{{ .Values.config.logstash_pwd }}"
ac25508ac97172018-04-18 14:23:17 +020074 - name: elasticsearch_base_url
osgn422wb561a592020-02-11 15:50:21 +010075 value: "{{ ternary "https" "http" .Values.security.ssl.enabled }}://{{.Values.config.elasticsearchServiceName}}.{{.Release.Namespace}}.svc.cluster.local:{{.Values.config.elasticsearchPort}}"
ac25508ac97172018-04-18 14:23:17 +020076 ports:
77 - containerPort: {{ .Values.service.internalPort }}
78 name: {{ include "common.servicename" . }}
79 readinessProbe:
80 tcpSocket:
81 port: {{ .Values.service.internalPort }}
82 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
83 periodSeconds: {{ .Values.readiness.periodSeconds }}
osgn422wb561a592020-02-11 15:50:21 +010084 timeoutSeconds: {{ .Values.readiness.timeoutSeconds }}
ac25508ac97172018-04-18 14:23:17 +020085# disable liveness probe when breakpoints set in debugger
86 # so K8s doesn't restart unresponsive container
87 {{- if eq .Values.liveness.enabled true }}
88 livenessProbe:
89 tcpSocket:
90 port: {{ .Values.service.internalPort }}
91 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
92 periodSeconds: {{ .Values.liveness.periodSeconds }}
osgn422wb561a592020-02-11 15:50:21 +010093 timeoutSeconds: {{ .Values.liveness.timeoutSeconds }}
ac25508ac97172018-04-18 14:23:17 +020094 {{ end -}}
osgn422w79814452020-09-25 02:28:02 +020095 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 10 }}
ac25508ac97172018-04-18 14:23:17 +020096 - mountPath: /etc/localtime
97 name: localtime
98 readOnly: true
99 - mountPath: /usr/share/logstash/config/logstash.yml
100 name: {{ include "common.fullname" . }}
101 subPath: logstash.yml
102 - mountPath: /usr/share/logstash/pipeline/logstash.conf
103 name: {{ include "common.fullname" . }}
104 subPath: pipeline.conf
105 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000106{{ include "common.resources" . | indent 12 }}
ac25508ac97172018-04-18 14:23:17 +0200107 {{- if .Values.nodeSelector }}
108 nodeSelector:
109{{ toYaml .Values.nodeSelector | indent 10 }}
110 {{- end -}}
111 {{- if .Values.affinity }}
112 affinity:
113{{ toYaml .Values.affinity | indent 10 }}
114 {{- end }}
osgn422w79814452020-09-25 02:28:02 +0200115 volumes: {{ include "common.certInitializer.volumes" . | nindent 8 }}
ac25508ac97172018-04-18 14:23:17 +0200116 - name: localtime
117 hostPath:
118 path: /etc/localtime
119 - name: {{ include "common.fullname" . }}
120 configMap:
121 name: {{ include "common.fullname" . }}
122 items:
123 - key: logstash.yml
124 path: logstash.yml
125 - key: pipeline.conf
126 path: pipeline.conf
ac25508ac97172018-04-18 14:23:17 +0200127 imagePullSecrets:
128 - name: "{{ include "common.namespace" . }}-docker-registry-key"