blob: 8ce19fb304a03971e499a21c131c3007710387bd [file] [log] [blame]
Jakub Latusekbe896842020-10-21 13:36:29 +02001{{/*
Prateekinlinux445a18e2018-08-01 06:48:33 +00002# Copyright © 2018 Amdocs, Bell Canada , ZTE
3#
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.
Jakub Latusekbe896842020-10-21 13:36:29 +020015*/}}
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020016apiVersion: apps/v1
BorislavG0433c912018-03-21 18:35:30 +020017kind: 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" . }}
BorislavG0433c912018-03-21 18:35:30 +020025 heritage: {{ .Release.Service }}
26spec:
Grzegorz-Lis055b6ce2020-07-23 10:03:54 +020027 selector:
28 matchLabels:
29 app: {{ include "common.name" . }}
BorislavG0433c912018-03-21 18:35:30 +020030 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" . }}
Huabing Zhao81b89762018-07-30 06:33:03 +000036 annotations:
37 sidecar.istio.io/inject: "{{.Values.istioSidecar}}"
BorislavG0433c912018-03-21 18:35:30 +020038 spec:
Huabing Zhao8f7cc812018-08-08 06:27:37 +000039 serviceAccountName: msb
BorislavG0433c912018-03-21 18:35:30 +020040 initContainers:
41 - command:
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020042 - /app/ready.py
BorislavG0433c912018-03-21 18:35:30 +020043 args:
44 - --container-name
45 - msb-discovery
46 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020052 image: "{{ include "common.repository" . }}/{{ .Values.global.readinessImage }}"
BorislavG0433c912018-03-21 18:35:30 +020053 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 name: {{ include "common.name" . }}-readiness
55 containers:
56 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000057 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
BorislavG0433c912018-03-21 18:35:30 +020058 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59 ports:
60 - containerPort: {{ .Values.service.internalPort }}
61 name: {{ .Values.service.name }}
62 - containerPort: {{ .Values.service.internalPortHttps }}
63 name: {{ .Values.service.name }}-https
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: CONSUL_IP
BorislavG6c7ecf02018-04-01 13:08:37 +030080 value: msb-consul.{{ include "common.namespace" . }}
BorislavG0433c912018-03-21 18:35:30 +020081 - name: SDCLIENT_IP
BorislavG6c7ecf02018-04-01 13:08:37 +030082 value: msb-discovery.{{ include "common.namespace" . }}
BorislavG0433c912018-03-21 18:35:30 +020083 - name: ROUTE_LABELS
84 value: {{ .Values.config.routeLabels }}
85 volumeMounts:
86 - mountPath: /etc/localtime
87 name: localtime
88 readOnly: true
Huabing Zhao88cf4962020-05-14 09:17:52 +080089 - name: {{ include "common.fullname" . }}-cert
90 mountPath: /usr/local/openresty/nginx/ssl/cert/cert.crt
91 readOnly: true
92 subPath: "cert.crt"
93 - name: {{ include "common.fullname" . }}-cert
94 mountPath: /usr/local/openresty/nginx/html/cert/ca.crt
95 readOnly: true
96 subPath: "ca.crt"
LiZi4dd8e112018-04-09 07:34:04 -040097 - mountPath: /usr/local/apiroute-works/logs
Li Zic5290dc2018-08-06 09:26:27 +000098 name: {{ include "common.fullname" . }}-logs
BorislavG0433c912018-03-21 18:35:30 +020099 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +0000100{{ include "common.resources" . | indent 12 }}
BorislavG0433c912018-03-21 18:35:30 +0200101 {{- if .Values.nodeSelector }}
102 nodeSelector:
103{{ toYaml .Values.nodeSelector | indent 10 }}
104 {{- end -}}
105 {{- if .Values.affinity }}
106 affinity:
107{{ toYaml .Values.affinity | indent 10 }}
108 {{- end }}
LiZi4dd8e112018-04-09 07:34:04 -0400109 # side car containers
110 - name: filebeat-onap
111 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
112 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
113 volumeMounts:
Li Zic5290dc2018-08-06 09:26:27 +0000114 - name: {{ include "common.fullname" . }}-filebeat-conf
115 mountPath: /usr/share/filebeat/filebeat.yml
116 subPath: filebeat.yml
117 - name: {{ include "common.fullname" . }}-data-filebeat
118 mountPath: /usr/share/filebeat/data
119 - name: {{ include "common.fullname" . }}-logs
120 mountPath: /var/log/onap/msb/msb-eag
121 - mountPath: /opt/ajsc/etc/config/logback.xml
122 name: {{ include "common.fullname" . }}-log-conf
123 subPath: logback.xml
BorislavG0433c912018-03-21 18:35:30 +0200124 volumes:
Huabing Zhao88cf4962020-05-14 09:17:52 +0800125 - name: {{ include "common.fullname" . }}-cert
126 secret:
127 secretName: {{ include "common.release" . }}-msb-https-cert
Li Zic5290dc2018-08-06 09:26:27 +0000128 - name: {{ include "common.fullname" . }}-log-conf
129 configMap:
130 name: {{ include "common.fullname" . }}-log
131 - name: {{ include "common.fullname" . }}-filebeat-conf
132 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100133 name: {{ include "common.release" . }}-msb-filebeat-configmap
Li Zic5290dc2018-08-06 09:26:27 +0000134 - name: {{ include "common.fullname" . }}-data-filebeat
135 emptyDir: {}
136 - name: {{ include "common.fullname" . }}-logs
137 emptyDir: {}
BorislavG0433c912018-03-21 18:35:30 +0200138 - name: localtime
139 hostPath:
140 path: /etc/localtime
BorislavG0433c912018-03-21 18:35:30 +0200141 imagePullSecrets:
142 - name: "{{ include "common.namespace" . }}-docker-registry-key"