ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 1 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 379e252 | 2018-09-05 12:26:02 +0000 | [diff] [blame] | 2 | # Modifications Copyright © 2018 AT&T |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 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. |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 15 | |
Magdalena_Biernacka | 7d0dcbe | 2020-07-12 23:21:43 +0200 | [diff] [blame] | 16 | apiVersion: apps/v1 |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 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 "+" "_" }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 24 | release: {{ include "common.release" . }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 25 | heritage: {{ .Release.Service }} |
| 26 | spec: |
| 27 | replicas: {{ .Values.replicaCount }} |
Magdalena_Biernacka | 7d0dcbe | 2020-07-12 23:21:43 +0200 | [diff] [blame] | 28 | selector: |
| 29 | matchLabels: |
| 30 | app: {{ include "common.name" . }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 31 | template: |
| 32 | metadata: |
| 33 | labels: |
| 34 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 35 | release: {{ include "common.release" . }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 36 | spec: |
| 37 | initContainers: |
| 38 | - command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 39 | - /app/ready.py |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 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 |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 49 | image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}" |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 50 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 51 | name: {{ include "common.name" . }}-readiness |
| 52 | containers: |
| 53 | - name: {{ include "common.name" . }} |
Julien Barbot | ed56cca | 2018-10-22 17:53:07 +0200 | [diff] [blame] | 54 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 55 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 56 | env: |
| 57 | - name: dmaap_consumer_group |
| 58 | value: "{{ .Values.config.dmaapConsumerGroup }}" |
| 59 | - name: dmaap_consumer_id |
| 60 | value: "{{ .Values.config.dmaapConsumerId }}" |
| 61 | - name: event_topic |
| 62 | value: "{{ .Values.config.eventTopic }}" |
| 63 | - name: notification_topic |
| 64 | value: "{{ .Values.config.notificationTopic }}" |
| 65 | - name: request_topic |
| 66 | value: "{{ .Values.config.requestTopic }}" |
| 67 | - name: dmaap_base_url |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame] | 68 | value: {{ ternary "https" "http" .Values.security.ssl.enabled }}://{{ .Values.config.dmaapHost }}.{{ include "common.namespace" . }}:{{ .Values.config.dmaapPort }} |
osgn422w | 6e663e4 | 2019-08-02 11:31:11 +0200 | [diff] [blame] | 69 | - name: logstash_user |
| 70 | value: "{{ .Values.config.logstash_user }}" |
| 71 | - name: logstash_pwd |
| 72 | value: "{{ .Values.config.logstash_pwd }}" |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 73 | - name: elasticsearch_base_url |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame] | 74 | value: "{{ ternary "https" "http" .Values.security.ssl.enabled }}://{{.Values.config.elasticsearchServiceName}}.{{.Release.Namespace}}.svc.cluster.local:{{.Values.config.elasticsearchPort}}" |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 75 | ports: |
| 76 | - containerPort: {{ .Values.service.internalPort }} |
| 77 | name: {{ include "common.servicename" . }} |
| 78 | readinessProbe: |
| 79 | tcpSocket: |
| 80 | port: {{ .Values.service.internalPort }} |
| 81 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 82 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame] | 83 | timeoutSeconds: {{ .Values.readiness.timeoutSeconds }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 84 | # disable liveness probe when breakpoints set in debugger |
| 85 | # so K8s doesn't restart unresponsive container |
| 86 | {{- if eq .Values.liveness.enabled true }} |
| 87 | livenessProbe: |
| 88 | tcpSocket: |
| 89 | port: {{ .Values.service.internalPort }} |
| 90 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 91 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame] | 92 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 93 | {{ end -}} |
| 94 | volumeMounts: |
| 95 | - mountPath: /etc/localtime |
| 96 | name: localtime |
| 97 | readOnly: true |
| 98 | - mountPath: /usr/share/logstash/config/logstash.yml |
| 99 | name: {{ include "common.fullname" . }} |
| 100 | subPath: logstash.yml |
| 101 | - mountPath: /usr/share/logstash/pipeline/logstash.conf |
| 102 | name: {{ include "common.fullname" . }} |
| 103 | subPath: pipeline.conf |
| 104 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 105 | {{ include "common.resources" . | indent 12 }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 106 | {{- if .Values.nodeSelector }} |
| 107 | nodeSelector: |
| 108 | {{ toYaml .Values.nodeSelector | indent 10 }} |
| 109 | {{- end -}} |
| 110 | {{- if .Values.affinity }} |
| 111 | affinity: |
| 112 | {{ toYaml .Values.affinity | indent 10 }} |
| 113 | {{- end }} |
| 114 | volumes: |
| 115 | - name: localtime |
| 116 | hostPath: |
| 117 | path: /etc/localtime |
| 118 | - name: {{ include "common.fullname" . }} |
| 119 | configMap: |
| 120 | name: {{ include "common.fullname" . }} |
| 121 | items: |
| 122 | - key: logstash.yml |
| 123 | path: logstash.yml |
| 124 | - key: pipeline.conf |
| 125 | path: pipeline.conf |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 126 | imagePullSecrets: |
| 127 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |