blob: 562cd54b3173b20d6ffdb75453aabbfb42938cf9 [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 Ramjuttun4603e7e2019-05-30 14:26:27 -040053 - name: APP_ACTION_DEPLOY_BLUEPRINT_GRPC_ENABLED
Timoney, Dan (dt5972)6c656312019-07-11 14:54:28 -040054 value: "{{ .Values.config.app.action.deployBlueprint.grpcEnabled }}"
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040055 - name: API_BLUEPRINT_CONTROLLER_HTTP_BASE_URL
56 value: {{ .Values.config.api.controller.http.baseUrl }}
57 - name: API_BLUEPRINT_CONTROLLER_HTTP_AUTH_TOKEN
58 value: {{ .Values.config.api.controller.http.authToken }}
59 - name: API_BLUEPRINT_PROCESSOR_HHTP_BASE_URL
60 value: {{ .Values.config.api.processor.http.baseUrl }}
61 - name: API_BLUEPRINT_PROCESSOR_HTTP_AUTH_TOKEN
62 value: {{ .Values.config.api.processor.http.authToken }}
63 - name: API_BLUEPRINT_PROCESSOR_GRPC_HOST
64 value: {{ .Values.config.api.processor.grpc.host }}
65 - name: API_BLUEPRINT_PROCESSOR_GRPC_PORT
Timoney, Dan (dt5972)6c656312019-07-11 14:54:28 -040066 value: "{{ .Values.config.api.processor.grpc.port }}"
Nirvan Ramjuttun4603e7e2019-05-30 14:26:27 -040067 - name: API_BLUEPRINT_PROCESSOR_GRPC_AUTH_TOKEN
68 value: {{ .Values.config.api.processor.grpc.authToken }}
Mike Elliott37cae252018-09-12 14:45:40 -040069 readinessProbe:
70 tcpSocket:
71 port: {{ .Values.service.internalPort }}
72 initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73 periodSeconds: {{ .Values.readiness.periodSeconds }}
Mike Elliott37cae252018-09-12 14:45:40 -040074 volumeMounts:
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010075 - mountPath: /etc/localtime
76 name: localtime
77 readOnly: true
Mike Elliott37cae252018-09-12 14:45:40 -040078 resources:
Mandeep Khinda5e3f36a2018-09-24 15:25:42 +000079{{ include "common.resources" . | indent 12 }}
Mike Elliott37cae252018-09-12 14:45:40 -040080 {{- if .Values.nodeSelector }}
81 nodeSelector:
82{{ toYaml .Values.nodeSelector | indent 10 }}
83 {{- end -}}
84 {{- if .Values.affinity }}
85 affinity:
86{{ toYaml .Values.affinity | indent 10 }}
87 {{- end }}
Sylvain Desbureaux7acab562019-03-01 09:26:13 +010088 # side car containers
89 # - name: filebeat-onap
90 # image: "{{ .Values.global.loggingRepository }}/{{ .Values.global.loggingImage }}"
91 # imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
92 # volumeMounts:
93 # - mountPath: /usr/share/filebeat/filebeat.yml
94 # name: filebeat-conf
95 # subPath: filebeat.yml
96 # - mountPath: /home/esr/works/logs
97 # name: esr-server-logs
98 # - mountPath: /usr/share/filebeat/data
99 # name: esr-server-filebeat
Mike Elliott37cae252018-09-12 14:45:40 -0400100 volumes:
101 - name: localtime
102 hostPath:
103 path: /etc/localtime
Sylvain Desbureaux7acab562019-03-01 09:26:13 +0100104 # - name: filebeat-conf
105 # configMap:
106 # name: {{ include "common.fullname" . }}-esr-filebeat
107 # - name: esr-server-logs
108 # emptyDir: {}
109 # - name: esr-server-filebeat
110 # emptyDir: {}
111 # - name: esrserver-log
112 # configMap:
113 # name: {{ include "common.fullname" . }}-esr-esrserver-log
Mike Elliott37cae252018-09-12 14:45:40 -0400114 imagePullSecrets:
115 - name: "{{ include "common.namespace" . }}-docker-registry-key"