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