Jakub Latusek | c586acb | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 1 | {{/* |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 2 | # Copyright © 2017 Amdocs, Bell Canada |
Mukul | 7de56c8 | 2018-09-04 08:03:27 +0000 | [diff] [blame] | 3 | # Modifications Copyright © 2018 AT&T |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [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 | c586acb | 2020-10-21 13:36:29 +0200 | [diff] [blame] | 16 | */}} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 17 | |
Sylvain Desbureaux | 9a99424 | 2020-11-21 22:25:10 +0100 | [diff] [blame] | 18 | apiVersion: apps/v1 |
Gary Wu | efbcaee | 2018-11-13 18:08:02 -0800 | [diff] [blame] | 19 | kind: Deployment |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 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" . }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 27 | heritage: {{ .Release.Service }} |
| 28 | spec: |
Grzegorz-Lis | 7c71286 | 2020-11-26 10:05:39 +0000 | [diff] [blame] | 29 | selector: |
| 30 | matchLabels: |
| 31 | app: {{ include "common.name" . }} |
Gary Wu | efbcaee | 2018-11-13 18:08:02 -0800 | [diff] [blame] | 32 | replicas: {{ .Values.replicaCount }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [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" . }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 38 | spec: |
| 39 | initContainers: |
| 40 | - command: |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 41 | - /app/ready.py |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 42 | args: |
| 43 | - --container-name |
| 44 | - log-elasticsearch |
| 45 | env: |
| 46 | - name: NAMESPACE |
| 47 | valueFrom: |
| 48 | fieldRef: |
| 49 | apiVersion: v1 |
| 50 | fieldPath: metadata.namespace |
Sylvain Desbureaux | 9a99424 | 2020-11-21 22:25:10 +0100 | [diff] [blame] | 51 | image: {{ include "repositoryGenerator.image.readiness" . }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 52 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
| 53 | name: {{ include "common.name" . }}-readiness |
| 54 | containers: |
| 55 | - name: {{ include "common.name" . }} |
Sylvain Desbureaux | 9a99424 | 2020-11-21 22:25:10 +0100 | [diff] [blame] | 56 | image: {{ include "repositoryGenerator.elasticRepository" . }}/{{ .Values.image }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 57 | imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} |
miroslavmasaryk | a7ac7f0 | 2023-03-01 14:12:26 +0100 | [diff] [blame] | 58 | resources: {{ include "common.resources" . | nindent 12 }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 59 | ports: |
| 60 | - containerPort: {{ .Values.service.internalPort }} |
| 61 | name: {{ .Values.service.name }} |
BorislavG | 2cf2684 | 2018-04-08 17:50:07 +0300 | [diff] [blame] | 62 | - containerPort: {{ .Values.service.internalPort2 }} |
| 63 | name: {{ .Values.service.name2 }} |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 64 | readinessProbe: |
| 65 | tcpSocket: |
| 66 | port: {{ .Values.service.internalPort }} |
| 67 | initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} |
| 68 | periodSeconds: {{ .Values.readiness.periodSeconds }} |
| 69 | # disable liveness probe when breakpoints set in debugger |
| 70 | # so K8s doesn't restart unresponsive container |
| 71 | {{- if eq .Values.liveness.enabled true }} |
| 72 | livenessProbe: |
| 73 | tcpSocket: |
| 74 | port: {{ .Values.service.internalPort }} |
| 75 | initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} |
| 76 | periodSeconds: {{ .Values.liveness.periodSeconds }} |
| 77 | {{ end -}} |
| 78 | env: |
| 79 | volumeMounts: |
| 80 | - mountPath: /etc/localtime |
| 81 | name: localtime |
| 82 | readOnly: true |
root | 4565d0a | 2018-04-04 17:21:02 +0000 | [diff] [blame] | 83 | - mountPath: /usr/share/logstash/config/ |
| 84 | name: {{ include "common.fullname" . }}-config |
| 85 | - mountPath: /usr/share/logstash/pipeline/ |
| 86 | name: {{ include "common.fullname" . }}-pipeline |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 87 | volumes: |
| 88 | - name: localtime |
| 89 | hostPath: |
| 90 | path: /etc/localtime |
root | 4565d0a | 2018-04-04 17:21:02 +0000 | [diff] [blame] | 91 | - name: {{ include "common.fullname" . }}-config |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 92 | configMap: |
| 93 | name: {{ include "common.fullname" . }} |
| 94 | items: |
| 95 | - key: logstash.yml |
| 96 | path: logstash.yml |
root | 4565d0a | 2018-04-04 17:21:02 +0000 | [diff] [blame] | 97 | - name: {{ include "common.fullname" . }}-pipeline |
| 98 | configMap: |
| 99 | name: {{ include "common.fullname" . }} |
| 100 | items: |
BorislavG | 5f3b619 | 2018-03-25 18:12:38 +0300 | [diff] [blame] | 101 | - key: onap-pipeline.conf |
| 102 | path: onap-pipeline.conf |
| 103 | imagePullSecrets: |
| 104 | - name: "{{ include "common.namespace" . }}-docker-registry-key" |