blob: cc6440050f91de0f5c5b9e68f17ad60ceba99173 [file] [log] [blame]
vaibhav_16dece04b2fe2018-03-22 09:07:12 +00001# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00002# Modifications Copyright © 2018 AT&T
vaibhav_16dece04b2fe2018-03-22 09:07:12 +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
vaibhav_16decf67e4182018-03-19 05:45:47 +000016apiVersion: 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" . }}
vaibhav_16decf67e4182018-03-19 05:45:47 +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" . }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000033 spec:
34 initContainers:
35 - command:
36 - /root/ready.py
37 args:
38 - --container-name
sebdetd85e24c2019-09-04 18:35:26 +020039 - clamp-backend
vaibhav_16decf67e4182018-03-19 05:45:47 +000040 env:
41 - name: NAMESPACE
42 valueFrom:
43 fieldRef:
44 apiVersion: v1
45 fieldPath: metadata.namespace
46 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
47 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
48 name: {{ include "common.name" . }}-readiness
49 containers:
ac2550de009892018-05-24 15:47:05 +020050 # side car containers
51 - name: {{ include "common.name" . }}-filebeat-onap
52 image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 volumeMounts:
55 - name: {{ include "common.fullname" . }}-filebeat-conf
56 mountPath: /usr/share/filebeat/filebeat.yml
57 subPath: filebeat.yml
58 - name: {{ include "common.fullname" . }}-data-filebeat
Michael O'Brienefcadf52018-07-23 17:31:05 -040059 mountPath: /usr/share/filebeat/data
ac2550de009892018-05-24 15:47:05 +020060 - name: {{ include "common.fullname" . }}-logs
sebdetd85e24c2019-09-04 18:35:26 +020061 mountPath: /var/log/nginx/
vaibhav_16decf67e4182018-03-19 05:45:47 +000062 - name: {{ include "common.name" . }}
BorislavGdf11cd52018-05-06 12:55:20 +000063 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
vaibhav_16decf67e4182018-03-19 05:45:47 +000064 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
65 ports:
66 - containerPort: {{ .Values.service.internalPort }}
67 # disable liveness probe when breakpoints set in debugger
68 # so K8s doesn't restart unresponsive container
69 {{- if eq .Values.liveness.enabled true }}
70 livenessProbe:
71 tcpSocket:
72 port: {{ .Values.service.internalPort }}
73 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
74 periodSeconds: {{ .Values.liveness.periodSeconds }}
75 {{ end -}}
76 readinessProbe:
77 tcpSocket:
78 port: {{ .Values.service.internalPort }}
79 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
80 periodSeconds: {{ .Values.readiness.periodSeconds }}
ac25507895b2c2018-05-16 14:31:23 +020081 volumeMounts:
ac2550de009892018-05-24 15:47:05 +020082 - name: {{ include "common.fullname" . }}-logs
sebdetd85e24c2019-09-04 18:35:26 +020083 mountPath: /var/log/nginx/
84 - mountPath: /etc/nginx/conf.d/nginx.conf
ac25507895b2c2018-05-16 14:31:23 +020085 name: {{ include "common.fullname" . }}-config
sebdetd85e24c2019-09-04 18:35:26 +020086 subPath: nginx.conf
vaibhav_16decf67e4182018-03-19 05:45:47 +000087 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000088{{ include "common.resources" . | indent 12 }}
vaibhav_16decf67e4182018-03-19 05:45:47 +000089 {{- if .Values.nodeSelector }}
90 nodeSelector:
91{{ toYaml .Values.nodeSelector | indent 10 }}
92 {{- end -}}
93 {{- if .Values.affinity }}
94 affinity:
95{{ toYaml .Values.affinity | indent 10 }}
96 {{- end }}
ac25507895b2c2018-05-16 14:31:23 +020097 volumes:
98 - name: {{ include "common.fullname" . }}-config
99 configMap:
100 name: {{ include "common.fullname" . }}
101 items:
sebdetd85e24c2019-09-04 18:35:26 +0200102 - key: nginx.conf
103 path: nginx.conf
ac2550de009892018-05-24 15:47:05 +0200104 - name: {{ include "common.fullname" . }}-filebeat-conf
105 configMap:
Krzysztof Opasiak137d7cc2020-01-24 23:49:11 +0100106 name: {{ include "common.release" . }}-clamp-filebeat-configmap
ac2550de009892018-05-24 15:47:05 +0200107 - name: {{ include "common.fullname" . }}-data-filebeat
108 emptyDir: {}
109 - name: {{ include "common.fullname" . }}-logs
110 emptyDir: {}
vaibhav_16decf67e4182018-03-19 05:45:47 +0000111 imagePullSecrets:
112 - name: "{{ include "common.namespace" . }}-docker-registry-key"