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 | |
| 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 "+" "_" }} |
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 }} |
| 28 | template: |
| 29 | metadata: |
| 30 | labels: |
| 31 | app: {{ include "common.name" . }} |
Krzysztof Opasiak | 137d7cc | 2020-01-24 23:49:11 +0100 | [diff] [blame] | 32 | release: {{ include "common.release" . }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 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" . }} |
Julien Barbot | ed56cca | 2018-10-22 17:53:07 +0200 | [diff] [blame] | 51 | image: "{{ include "common.repository" . }}/{{ .Values.image }}" |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 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 |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame^] | 65 | 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] | 66 | - name: logstash_user |
| 67 | value: "{{ .Values.config.logstash_user }}" |
| 68 | - name: logstash_pwd |
| 69 | value: "{{ .Values.config.logstash_pwd }}" |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 70 | - name: elasticsearch_base_url |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame^] | 71 | 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] | 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 }} |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame^] | 80 | timeoutSeconds: {{ .Values.readiness.timeoutSeconds }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 81 | # disable liveness probe when breakpoints set in debugger |
| 82 | # so K8s doesn't restart unresponsive container |
| 83 | {{- if eq .Values.liveness.enabled true }} |
| 84 | livenessProbe: |
| 85 | tcpSocket: |
| 86 | port: {{ .Values.service.internalPort }} |
| 87 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 88 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
osgn422w | b561a59 | 2020-02-11 15:50:21 +0100 | [diff] [blame^] | 89 | timeoutSeconds: {{ .Values.liveness.timeoutSeconds }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 90 | {{ end -}} |
| 91 | volumeMounts: |
| 92 | - mountPath: /etc/localtime |
| 93 | name: localtime |
| 94 | readOnly: true |
| 95 | - mountPath: /usr/share/logstash/config/logstash.yml |
| 96 | name: {{ include "common.fullname" . }} |
| 97 | subPath: logstash.yml |
| 98 | - mountPath: /usr/share/logstash/pipeline/logstash.conf |
| 99 | name: {{ include "common.fullname" . }} |
| 100 | subPath: pipeline.conf |
| 101 | resources: |
Mandeep Khinda | 5e3f36a | 2018-09-24 15:25:42 +0000 | [diff] [blame] | 102 | {{ include "common.resources" . | indent 12 }} |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 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 |
ac2550 | 8ac9717 | 2018-04-18 14:23:17 +0200 | [diff] [blame] | 123 | imagePullSecrets: |
| 124 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |