Merge "Update VID values.yaml to release 5.0.0"
[oom.git] / kubernetes / cds / charts / cds-blueprints-processor / templates / deployment.yaml
1 # Copyright (c) 2019 IBM, Bell Canada
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 apiVersion: extensions/v1beta1
16 kind: Deployment
17 metadata:
18   name: {{ include "common.fullname" . }}
19   namespace: {{ include "common.namespace" . }}
20   labels:
21     app: {{ include "common.name" . }}
22     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
23     release: {{ .Release.Name }}
24     heritage: {{ .Release.Service }}
25 spec:
26   replicas: {{ .Values.replicaCount }}
27   template:
28     metadata:
29       labels:
30         app: {{ include "common.name" . }}
31         release: {{ .Release.Name }}
32     spec:
33       initContainers:
34       - command:
35         - /root/ready.py
36         args:
37         - --container-name
38         - cds-db
39         env:
40         - name: NAMESPACE
41           valueFrom:
42             fieldRef:
43               apiVersion: v1
44               fieldPath: metadata.namespace
45         image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
46         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
47         name: {{ include "common.name" . }}-readiness
48       containers:
49         - name: {{ include "common.name" . }}
50           image: "{{ include "common.repository" . }}/{{ .Values.image }}"
51           imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
52           env:
53           - name: APP_CONFIG_HOME
54             value: {{ .Values.config.appConfigDir }}
55           ports:
56           - containerPort: {{ .Values.service.http.internalPort }}
57           - containerPort: {{ .Values.service.grpc.internalPort }}
58           # disable liveness probe when breakpoints set in debugger
59           # so K8s doesn't restart unresponsive container
60           {{ if .Values.liveness.enabled }}
61           livenessProbe:
62             httpGet:
63               path: /api/v1/execution-service/health-check
64               port: {{ .Values.service.http.internalPort }}
65               httpHeaders:
66               - name: Authorization
67                 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
68             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
69             periodSeconds: {{ .Values.liveness.periodSeconds }}
70           {{ end }}
71           readinessProbe:
72             httpGet:
73               path: /api/v1/execution-service/health-check
74               port: {{ .Values.service.http.internalPort }}
75               httpHeaders:
76               - name: Authorization
77                 value: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw==
78             initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
79             periodSeconds: {{ .Values.liveness.periodSeconds }}
80           volumeMounts:
81           - mountPath: /etc/localtime
82             name: localtime
83             readOnly: true
84           - mountPath: {{ .Values.config.appConfigDir }}/application.properties
85             name: {{ include "common.fullname" . }}-config
86             subPath: application.properties
87           - mountPath: {{ .Values.config.appConfigDir }}/logback.xml
88             name: {{ include "common.fullname" . }}-config
89             subPath: logback.xml
90
91           - mountPath: {{ .Values.config.appConfigDir }}/ONAP_RootCA.cer
92             name: {{ include "common.fullname" . }}-config
93             subPath: ONAP_RootCA.cer
94
95           - mountPath: {{ .Values.persistence.deployedBlueprint }}
96             name: {{ include "common.fullname" . }}-blueprints
97           resources:
98 {{ include "common.resources" . | indent 12 }}
99         {{- if .Values.nodeSelector }}
100         nodeSelector:
101 {{ toYaml .Values.nodeSelector | indent 10 }}
102         {{- end -}}
103         {{- if .Values.affinity }}
104         affinity:
105 {{ toYaml .Values.affinity | indent 10 }}
106         {{- end }}
107       volumes:
108         - name: localtime
109           hostPath:
110             path: /etc/localtime
111         - name: {{ include "common.fullname" . }}-config
112           configMap:
113             name: {{ include "common.fullname" . }}-configmap
114             items:
115             - key: application.properties
116               path: application.properties
117             - key: logback.xml
118               path: logback.xml
119         - name: {{ include "common.fullname" . }}-blueprints
120           persistentVolumeClaim:
121             claimName: {{ .Release.Name }}-cds-blueprints
122       imagePullSecrets:
123       - name: "{{ include "common.namespace" . }}-docker-registry-key"