[ONAP-wide] Replace .Release.Name with common.release
[oom.git] / kubernetes / cds / charts / cds-ui / templates / deployment.yaml
1 # Copyright © 2018 Orange
2 # Modifications Copyright © 2018  Amdocs, Bell Canada
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.
15
16 apiVersion: extensions/v1beta1
17 kind: Deployment
18 metadata:
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: {{ include "common.release" . }}
25     heritage: {{ .Release.Service }}
26 spec:
27   replicas: {{ .Values.replicaCount }}
28   template:
29     metadata:
30       labels:
31         app: {{ include "common.name" . }}
32         release: {{ include "common.release" . }}
33         name: {{ include "common.fullname" . }}
34     spec:
35       containers:
36         - name: {{ include "common.name" . }}
37           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
38           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
39           ports:
40             - containerPort: {{ .Values.service.internalPort }}
41           # 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 }}
50           env:
51             - name: HOST
52               value: 0.0.0.0
53             - name: APP_ACTION_DEPLOY_BLUEPRINT_GRPC_ENABLED
54               value: "{{ .Values.config.app.action.deployBlueprint.grpcEnabled }}"
55             - 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_HTTP_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
66               value: "{{ .Values.config.api.processor.grpc.port }}"
67             - name: API_BLUEPRINT_PROCESSOR_GRPC_AUTH_TOKEN
68               value: {{ .Values.config.api.processor.grpc.authToken }}
69           readinessProbe:
70             tcpSocket:
71               port: {{ .Values.service.internalPort }}
72             initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
73             periodSeconds: {{ .Values.readiness.periodSeconds }}
74           volumeMounts:
75             - mountPath: /etc/localtime
76               name: localtime
77               readOnly: true
78           resources:
79 {{ include "common.resources" . | indent 12 }}
80         {{- 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 }}
88       # 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
100       volumes:
101         - name: localtime
102           hostPath:
103             path: /etc/localtime
104         # - 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
114       imagePullSecrets:
115       - name: "{{ include "common.namespace" . }}-docker-registry-key"