blob: 720fe6bec04bea35bed93ba4c7d74e868ae3059d [file] [log] [blame]
BorislavG5f3b6192018-03-25 18:12:38 +03001# Copyright © 2017 Amdocs, Bell Canada
Mukul7de56c82018-09-04 08:03:27 +00002# Modifications Copyright © 2018 AT&T
BorislavG5f3b6192018-03-25 18:12:38 +03003#
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.
15
16apiVersion: extensions/v1beta1
Gary Wuefbcaee2018-11-13 18:08:02 -080017kind: Deployment
BorislavG5f3b6192018-03-25 18:12:38 +030018metadata:
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 Opasiak137d7cc2020-01-24 23:49:11 +010024 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030025 heritage: {{ .Release.Service }}
26spec:
Gary Wuefbcaee2018-11-13 18:08:02 -080027 replicas: {{ .Values.replicaCount }}
BorislavG5f3b6192018-03-25 18:12:38 +030028 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010032 release: {{ include "common.release" . }}
BorislavG5f3b6192018-03-25 18:12:38 +030033 spec:
34 initContainers:
35 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020036 - /app/ready.py
BorislavG5f3b6192018-03-25 18:12:38 +030037 args:
38 - --container-name
39 - log-elasticsearch
40 env:
41 - name: NAMESPACE
42 valueFrom:
43 fieldRef:
44 apiVersion: v1
45 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020046 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
BorislavG5f3b6192018-03-25 18:12:38 +030047 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48 name: {{ include "common.name" . }}-readiness
49 containers:
50 - name: {{ include "common.name" . }}
51 image: "{{ .Values.global.loggingRepository| default .Values.loggingRepository }}/{{ .Values.image }}"
52 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
vaibhavjayas659fbae2018-09-19 08:58:10 +000053 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000054{{ include "common.resources" . | indent 12 }}
BorislavG5f3b6192018-03-25 18:12:38 +030055 ports:
56 - containerPort: {{ .Values.service.internalPort }}
57 name: {{ .Values.service.name }}
BorislavG2cf26842018-04-08 17:50:07 +030058 - containerPort: {{ .Values.service.internalPort2 }}
59 name: {{ .Values.service.name2 }}
BorislavG5f3b6192018-03-25 18:12:38 +030060 readinessProbe:
61 tcpSocket:
62 port: {{ .Values.service.internalPort }}
63 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
64 periodSeconds: {{ .Values.readiness.periodSeconds }}
65# disable liveness probe when breakpoints set in debugger
66 # so K8s doesn't restart unresponsive container
67 {{- if eq .Values.liveness.enabled true }}
68 livenessProbe:
69 tcpSocket:
70 port: {{ .Values.service.internalPort }}
71 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
72 periodSeconds: {{ .Values.liveness.periodSeconds }}
73 {{ end -}}
74 env:
75 volumeMounts:
76 - mountPath: /etc/localtime
77 name: localtime
78 readOnly: true
root4565d0a2018-04-04 17:21:02 +000079 - mountPath: /usr/share/logstash/config/
80 name: {{ include "common.fullname" . }}-config
81 - mountPath: /usr/share/logstash/pipeline/
82 name: {{ include "common.fullname" . }}-pipeline
BorislavG5f3b6192018-03-25 18:12:38 +030083 volumes:
84 - name: localtime
85 hostPath:
86 path: /etc/localtime
root4565d0a2018-04-04 17:21:02 +000087 - name: {{ include "common.fullname" . }}-config
BorislavG5f3b6192018-03-25 18:12:38 +030088 configMap:
89 name: {{ include "common.fullname" . }}
90 items:
91 - key: logstash.yml
92 path: logstash.yml
root4565d0a2018-04-04 17:21:02 +000093 - name: {{ include "common.fullname" . }}-pipeline
94 configMap:
95 name: {{ include "common.fullname" . }}
96 items:
BorislavG5f3b6192018-03-25 18:12:38 +030097 - key: onap-pipeline.conf
98 path: onap-pipeline.conf
99 imagePullSecrets:
100 - name: "{{ include "common.namespace" . }}-docker-registry-key"