Add standardized helm chart for log
[oom.git] / kubernetes / log / charts / log-logstash / templates / deployment.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - log-elasticsearch
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-readiness
48       containers:
49         - name: {{ include "common.name" . }}
50           image: "{{ .Values.global.loggingRepository| default .Values.loggingRepository }}/{{ .Values.image }}"
51           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52           ports:
53           - containerPort: {{ .Values.service.internalPort }}
54             name: {{ .Values.service.name }}
55           - containerPort: {{ .Values.service.internalPortHttp }}
56             name: {{ .Values.service.name }}-http
57           readinessProbe:
58             tcpSocket:
59               port: {{ .Values.service.internalPort }}
60             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
61             periodSeconds: {{ .Values.readiness.periodSeconds }}
62 # disable liveness probe when breakpoints set in debugger
63           # so K8s doesn't restart unresponsive container
64           {{- if eq .Values.liveness.enabled true }}
65           livenessProbe:
66             tcpSocket:
67               port: {{ .Values.service.internalPort }}
68             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
69             periodSeconds: {{ .Values.liveness.periodSeconds }}
70           {{ end -}}
71           env:
72           volumeMounts:
73           - mountPath: /etc/localtime
74             name: localtime
75             readOnly: true
76           - mountPath: /usr/share/logstash/config/logstash.yml
77             name: {{ include "common.fullname" . }}
78             subPath: logstash.yml
79           - mountPath: /usr/share/logstash/pipeline/onap-pipeline.conf
80             name: {{ include "common.fullname" . }}
81             subPath: onap-pipeline.conf
82           resources:
83 {{ toYaml .Values.resources | indent 12 }}
84         {{- if .Values.nodeSelector }}
85         nodeSelector:
86 {{ toYaml .Values.nodeSelector | indent 10 }}
87         {{- end -}}
88         {{- if .Values.affinity }}
89         affinity:
90 {{ toYaml .Values.affinity | indent 10 }}
91         {{- end }}
92       volumes:
93         - name: localtime
94           hostPath:
95             path: /etc/localtime
96         - name: {{ include "common.fullname" . }}
97           configMap:
98             name: {{ include "common.fullname" . }}
99             items:
100             - key: logstash.yml
101               path: logstash.yml
102             - key: onap-pipeline.conf
103               path: onap-pipeline.conf
104       imagePullSecrets:
105       - name: "{{ include "common.namespace" . }}-docker-registry-key"