blob: 6a98fe6059456f81e5520cedfe2431c9825ae715 [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
Sylwia_Jakubek19bb8f12020-07-20 14:31:10 +020016apiVersion: apps/v1
Priyanka90e0e262018-03-21 06:44:25 +000017kind: 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:
Sylwia_Jakubek19bb8f12020-07-20 14:31:10 +020027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
Priyanka90e0e262018-03-21 06:44:25 +000030 replicas: {{ .Values.replicaCount }}
31 template:
32 metadata:
33 labels:
34 app: {{ include "common.name" . }}
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +010035 release: {{ include "common.release" . }}
Priyanka90e0e262018-03-21 06:44:25 +000036 spec:
Krzysztof Opasiak1e6740d2020-05-14 21:28:54 +020037 securityContext:
38 runAsUser: 1000
39 runAsGroup: 1001
40 fsGroup: 1001
41 initContainers:
42 - command:
43 - cp
44 args:
45 - -r
46 - -T
47 - /home/esr/conf
48 - /opt/conf
49 securityContext:
50 privileged: true
51 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
52 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
53 name: create-conf-dir
54 volumeMounts:
55 - name: conf-dir
56 mountPath: /opt/conf
57
Priyanka90e0e262018-03-21 06:44:25 +000058 containers:
59 - name: {{ .Chart.Name }}
BorislavGdf11cd52018-05-06 12:55:20 +000060 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
Priyanka90e0e262018-03-21 06:44:25 +000061 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
62 ports:
63 - containerPort: {{ .Values.service.internalPort }}
64 # disable liveness probe when breakpoints set in debugger
65 # so K8s doesn't restart unresponsive container
66 {{- if eq .Values.liveness.enabled true }}
67 livenessProbe:
68 tcpSocket:
69 port: {{ .Values.service.internalPort }}
70 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
71 periodSeconds: {{ .Values.liveness.periodSeconds }}
72 {{ end -}}
73 readinessProbe:
74 tcpSocket:
75 port: {{ .Values.service.internalPort }}
76 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
77 periodSeconds: {{ .Values.readiness.periodSeconds }}
78 env:
79 - name: MSB_ADDR
80 value: {{ tpl .Values.msbaddr . }}
81 volumeMounts:
82 - mountPath: /etc/localtime
83 name: localtime
84 readOnly: true
85 - mountPath: /home/esr/works/logs
Li Zi5cc26172018-08-31 02:01:53 +000086 name: {{ include "common.fullname" . }}-logs
Krzysztof Opasiak1e6740d2020-05-14 21:28:54 +020087 - mountPath: /home/esr/conf
88 name: conf-dir
Priyanka90e0e262018-03-21 06:44:25 +000089 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000090{{ include "common.resources" . | indent 12 }}
Priyanka90e0e262018-03-21 06:44:25 +000091 {{- if .Values.nodeSelector }}
92 nodeSelector:
93{{ toYaml .Values.nodeSelector | indent 10 }}
94 {{- end -}}
95 {{- if .Values.affinity }}
96 affinity:
97{{ toYaml .Values.affinity | indent 10 }}
98 {{- end }}
Li Zi5cc26172018-08-31 02:01:53 +000099 # Filebeat sidecar container
100 - name: {{ include "common.name" . }}-filebeat-onap
Krzysztof Opasiak1e6740d2020-05-14 21:28:54 +0200101 securityContext:
102 runAsUser: 1000
103 runAsGroup: 1000
Priyanka90e0e262018-03-21 06:44:25 +0000104 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
105 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
106 volumeMounts:
Li Zi5cc26172018-08-31 02:01:53 +0000107 - name: {{ include "common.fullname" . }}-filebeat-conf
108 mountPath: /usr/share/filebeat/filebeat.yml
Priyanka90e0e262018-03-21 06:44:25 +0000109 subPath: filebeat.yml
Li Zi5cc26172018-08-31 02:01:53 +0000110 - name: {{ include "common.fullname" . }}-data-filebeat
111 mountPath: /usr/share/filebeat/data
112 - name: {{ include "common.fullname" . }}-logs
113 mountPath: /var/log/onap/esr/esr-server
114 - mountPath: /opt/ajsc/etc/config/logback.xml
115 name: {{ include "common.fullname" . }}-log-conf
116 subPath: logback.xml
Priyanka90e0e262018-03-21 06:44:25 +0000117 volumes:
118 - name: localtime
119 hostPath:
120 path: /etc/localtime
Li Zi5cc26172018-08-31 02:01:53 +0000121 - name: {{ include "common.fullname" . }}-log-conf
Priyanka90e0e262018-03-21 06:44:25 +0000122 configMap:
Li Zi5cc26172018-08-31 02:01:53 +0000123 name: {{ include "common.fullname" . }}-log
124 - name: {{ include "common.fullname" . }}-filebeat-conf
Priyanka90e0e262018-03-21 06:44:25 +0000125 configMap:
Li Zi5cc26172018-08-31 02:01:53 +0000126 name: {{ include "common.fullname" . }}-esr-filebeat-configmap
127 - name: {{ include "common.fullname" . }}-data-filebeat
128 emptyDir: {}
129 - name: {{ include "common.fullname" . }}-logs
130 emptyDir: {}
Krzysztof Opasiak1e6740d2020-05-14 21:28:54 +0200131 - name: conf-dir
132 emptyDir: {}
133
Priyanka90e0e262018-03-21 06:44:25 +0000134 imagePullSecrets:
135 - name: "{{ include "common.namespace" . }}-docker-registry-key"