blob: 995a409d8a8be363179e6b581310df2b02c796c2 [file] [log] [blame]
Priyanka90e0e262018-03-21 06:44:25 +00001# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00002# Modifications Copyright © 2018 AT&T
Priyanka90e0e262018-03-21 06:44:25 +00003#
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
17kind: Deployment
18metadata:
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" . }}
Priyanka90e0e262018-03-21 06:44:25 +000025 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010032 release: {{ include "common.release" . }}
Priyanka90e0e262018-03-21 06:44:25 +000033 spec:
Krzysztof Opasiak1e6740d2020-05-14 21:28:54 +020034 securityContext:
35 runAsUser: 1000
36 runAsGroup: 1001
37 fsGroup: 1001
38 initContainers:
39 - command:
40 - cp
41 args:
42 - -r
43 - -T
44 - /home/esr/conf
45 - /opt/conf
46 securityContext:
47 privileged: true
48 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
49 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
50 name: create-conf-dir
51 volumeMounts:
52 - name: conf-dir
53 mountPath: /opt/conf
54
Priyanka90e0e262018-03-21 06:44:25 +000055 containers:
56 - name: {{ .Chart.Name }}
BorislavGdf11cd52018-05-06 12:55:20 +000057 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Priyanka90e0e262018-03-21 06:44:25 +000058 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59 ports:
60 - containerPort: {{ .Values.service.internalPort }}
61 # disable liveness probe when breakpoints set in debugger
62 # so K8s doesn't restart unresponsive container
63 {{- if eq .Values.liveness.enabled true }}
64 livenessProbe:
65 tcpSocket:
66 port: {{ .Values.service.internalPort }}
67 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
68 periodSeconds: {{ .Values.liveness.periodSeconds }}
69 {{ end -}}
70 readinessProbe:
71 tcpSocket:
72 port: {{ .Values.service.internalPort }}
73 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
74 periodSeconds: {{ .Values.readiness.periodSeconds }}
75 env:
76 - name: MSB_ADDR
77 value: {{ tpl .Values.msbaddr . }}
78 volumeMounts:
79 - mountPath: /etc/localtime
80 name: localtime
81 readOnly: true
82 - mountPath: /home/esr/works/logs
Li Zi5cc26172018-08-31 02:01:53 +000083 name: {{ include "common.fullname" . }}-logs
Krzysztof Opasiak1e6740d2020-05-14 21:28:54 +020084 - mountPath: /home/esr/conf
85 name: conf-dir
Priyanka90e0e262018-03-21 06:44:25 +000086 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000087{{ include "common.resources" . | indent 12 }}
Priyanka90e0e262018-03-21 06:44:25 +000088 {{- 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 }}
Li Zi5cc26172018-08-31 02:01:53 +000096 # Filebeat sidecar container
97 - name: {{ include "common.name" . }}-filebeat-onap
Krzysztof Opasiak1e6740d2020-05-14 21:28:54 +020098 securityContext:
99 runAsUser: 1000
100 runAsGroup: 1000
Priyanka90e0e262018-03-21 06:44:25 +0000101 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
102 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
103 volumeMounts:
Li Zi5cc26172018-08-31 02:01:53 +0000104 - name: {{ include "common.fullname" . }}-filebeat-conf
105 mountPath: /usr/share/filebeat/filebeat.yml
Priyanka90e0e262018-03-21 06:44:25 +0000106 subPath: filebeat.yml
Li Zi5cc26172018-08-31 02:01:53 +0000107 - name: {{ include "common.fullname" . }}-data-filebeat
108 mountPath: /usr/share/filebeat/data
109 - name: {{ include "common.fullname" . }}-logs
110 mountPath: /var/log/onap/esr/esr-server
111 - mountPath: /opt/ajsc/etc/config/logback.xml
112 name: {{ include "common.fullname" . }}-log-conf
113 subPath: logback.xml
Priyanka90e0e262018-03-21 06:44:25 +0000114 volumes:
115 - name: localtime
116 hostPath:
117 path: /etc/localtime
Li Zi5cc26172018-08-31 02:01:53 +0000118 - name: {{ include "common.fullname" . }}-log-conf
Priyanka90e0e262018-03-21 06:44:25 +0000119 configMap:
Li Zi5cc26172018-08-31 02:01:53 +0000120 name: {{ include "common.fullname" . }}-log
121 - name: {{ include "common.fullname" . }}-filebeat-conf
Priyanka90e0e262018-03-21 06:44:25 +0000122 configMap:
Li Zi5cc26172018-08-31 02:01:53 +0000123 name: {{ include "common.fullname" . }}-esr-filebeat-configmap
124 - name: {{ include "common.fullname" . }}-data-filebeat
125 emptyDir: {}
126 - name: {{ include "common.fullname" . }}-logs
127 emptyDir: {}
Krzysztof Opasiak1e6740d2020-05-14 21:28:54 +0200128 - name: conf-dir
129 emptyDir: {}
130
Priyanka90e0e262018-03-21 06:44:25 +0000131 imagePullSecrets:
132 - name: "{{ include "common.namespace" . }}-docker-registry-key"