blob: ead1b2edbded16413407ef7693c2baf8e707e960 [file] [log] [blame]
Sylvain Desbureaux7acab562019-03-01 09:26:13 +01001# Copyright © 2018 Orange
2# Modifications Copyright © 2018 Amdocs, Bell Canada
Steve Alphonse Sianie20fd5e2019-01-25 16:16:29 -05003#
Mike Elliott37cae252018-09-12 14:45:40 -04004# 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 "+" "_" }}
24 release: {{ .Release.Name }}
25 heritage: {{ .Release.Service }}
26spec:
27 replicas: {{ .Values.replicaCount }}
28 template:
29 metadata:
30 labels:
31 app: {{ include "common.name" . }}
32 release: {{ .Release.Name }}
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010033 name: {{ include "common.fullname" . }}
Mike Elliott37cae252018-09-12 14:45:40 -040034 spec:
Mike Elliott37cae252018-09-12 14:45:40 -040035 containers:
36 - name: {{ include "common.name" . }}
37 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
38 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39 ports:
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010040 - containerPort: {{ .Values.service.internalPort }}
Mike Elliott37cae252018-09-12 14:45:40 -040041 # disable liveness probe when breakpoints set in debugger
42 # so K8s doesn't restart unresponsive container
43 {{ if .Values.liveness.enabled }}
44 livenessProbe:
45 tcpSocket:
46 port: {{ .Values.service.internalPort }}
47 initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
48 periodSeconds: {{ .Values.liveness.periodSeconds }}
49 {{ end }}
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010050 env:
51 - name: HOST
52 value: 0.0.0.0
Nirvan Ramjuttune7a4aa72019-05-07 12:19:50 -040053 - name: API_BLUEPRINT_CONTROLLER_BASE_URL
54 value: {{ .Values.config.api.controller.baseUrl }}
55 - name: API_BLUEPRINT_CONTROLLER_AUTH_TOKEN
56 value: {{ .Values.config.api.controller.authToken }}
57 - name: API_BLUEPRINT_PROCESSOR_BASE_URL
58 value: {{ .Values.config.api.processor.baseUrl }}
59 - name: API_BLUEPRINT_PROCESSOR_AUTH_TOKEN
60 value: {{ .Values.config.api.processor.authToken }}
Mike Elliott37cae252018-09-12 14:45:40 -040061 readinessProbe:
62 tcpSocket:
63 port: {{ .Values.service.internalPort }}
64 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
65 periodSeconds: {{ .Values.readiness.periodSeconds }}
Mike Elliott37cae252018-09-12 14:45:40 -040066 volumeMounts:
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010067 - mountPath: /etc/localtime
68 name: localtime
69 readOnly: true
Mike Elliott37cae252018-09-12 14:45:40 -040070 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000071{{ include "common.resources" . | indent 12 }}
Mike Elliott37cae252018-09-12 14:45:40 -040072 {{- if .Values.nodeSelector }}
73 nodeSelector:
74{{ toYaml .Values.nodeSelector | indent 10 }}
75 {{- end -}}
76 {{- if .Values.affinity }}
77 affinity:
78{{ toYaml .Values.affinity | indent 10 }}
79 {{- end }}
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010080 # side car containers
81 # - name: filebeat-onap
82 # image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
83 # imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
84 # volumeMounts:
85 # - mountPath: /usr/share/filebeat/filebeat.yml
86 # name: filebeat-conf
87 # subPath: filebeat.yml
88 # - mountPath: /home/esr/works/logs
89 # name: esr-server-logs
90 # - mountPath: /usr/share/filebeat/data
91 # name: esr-server-filebeat
Mike Elliott37cae252018-09-12 14:45:40 -040092 volumes:
93 - name: localtime
94 hostPath:
95 path: /etc/localtime
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010096 # - name: filebeat-conf
97 # configMap:
98 # name: {{ include "common.fullname" . }}-esr-filebeat
99 # - name: esr-server-logs
100 # emptyDir: {}
101 # - name: esr-server-filebeat
102 # emptyDir: {}
103 # - name: esrserver-log
104 # configMap:
105 # name: {{ include "common.fullname" . }}-esr-esrserver-log
Mike Elliott37cae252018-09-12 14:45:40 -0400106 imagePullSecrets:
107 - name: "{{ include "common.namespace" . }}-docker-registry-key"