blob: dde6c5bc8f81f9adae3ced564f393680c6b43760 [file] [log] [blame]
Jakub Latusekc586acb2020-10-21 13:36:29 +02001{{/*
BorislavG5f3b6192018-03-25 18:12:38 +03002# Copyright © 2017 Amdocs, Bell Canada
Mukul7de56c82018-09-04 08:03:27 +00003# Modifications Copyright © 2018 AT&T
BorislavG5f3b6192018-03-25 18:12:38 +03004#
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 Latusekc586acb2020-10-21 13:36:29 +020016*/}}
BorislavG5f3b6192018-03-25 18:12:38 +030017
18apiVersion: extensions/v1beta1
Gary Wuefbcaee2018-11-13 18:08:02 -080019kind: Deployment
BorislavG5f3b6192018-03-25 18:12:38 +030020metadata:
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 Opasiak137d7cc2020-01-24 23:49:11 +010026 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030027 heritage: {{ .Release.Service }}
28spec:
Gary Wuefbcaee2018-11-13 18:08:02 -080029 replicas: {{ .Values.replicaCount }}
BorislavG5f3b6192018-03-25 18:12:38 +030030 template:
31 metadata:
32 labels:
33 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010034 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030035 spec:
36 initContainers:
37 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020038 - /app/ready.py
BorislavG5f3b6192018-03-25 18:12:38 +030039 args:
40 - --container-name
41 - log-elasticsearch
42 env:
43 - name: NAMESPACE
44 valueFrom:
45 fieldRef:
46 apiVersion: v1
47 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020048 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
BorislavG5f3b6192018-03-25 18:12:38 +030049 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50 name: {{ include "common.name" . }}-readiness
51 containers:
52 - name: {{ include "common.name" . }}
53 image: "{{ .Values.global.loggingRepository| default .Values.loggingRepository }}/{{ .Values.image }}"
54 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
vaibhavjayas659fbae2018-09-19 08:58:10 +000055 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000056{{ include "common.resources" . | indent 12 }}
BorislavG5f3b6192018-03-25 18:12:38 +030057 ports:
58 - containerPort: {{ .Values.service.internalPort }}
59 name: {{ .Values.service.name }}
BorislavG2cf26842018-04-08 17:50:07 +030060 - containerPort: {{ .Values.service.internalPort2 }}
61 name: {{ .Values.service.name2 }}
BorislavG5f3b6192018-03-25 18:12:38 +030062 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:
77 volumeMounts:
78 - mountPath: /etc/localtime
79 name: localtime
80 readOnly: true
root4565d0a2018-04-04 17:21:02 +000081 - mountPath: /usr/share/logstash/config/
82 name: {{ include "common.fullname" . }}-config
83 - mountPath: /usr/share/logstash/pipeline/
84 name: {{ include "common.fullname" . }}-pipeline
BorislavG5f3b6192018-03-25 18:12:38 +030085 volumes:
86 - name: localtime
87 hostPath:
88 path: /etc/localtime
root4565d0a2018-04-04 17:21:02 +000089 - name: {{ include "common.fullname" . }}-config
BorislavG5f3b6192018-03-25 18:12:38 +030090 configMap:
91 name: {{ include "common.fullname" . }}
92 items:
93 - key: logstash.yml
94 path: logstash.yml
root4565d0a2018-04-04 17:21:02 +000095 - name: {{ include "common.fullname" . }}-pipeline
96 configMap:
97 name: {{ include "common.fullname" . }}
98 items:
BorislavG5f3b6192018-03-25 18:12:38 +030099 - key: onap-pipeline.conf
100 path: onap-pipeline.conf
101 imagePullSecrets:
102 - name: "{{ include "common.namespace" . }}-docker-registry-key"