Merge "[COMMON] Add custom certs into AAF truststore"
[oom.git] / kubernetes / aai / components / aai-traversal / templates / deployment.yaml
1 {{/*
2 # Copyright (c) 2017 Amdocs, Bell Canada
3 # Modifications Copyright (c) 2018 AT&T
4 # Modifications Copyright (c) 2020 Nokia, Orange
5 # Modifications Copyright (c) 2021 Orange
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 */}}
19
20 apiVersion: apps/v1
21 kind: Deployment
22 metadata:
23   name: {{ include "common.fullname" . }}
24   namespace: {{ include "common.namespace" . }}
25   labels:
26     app: {{ include "common.name" . }}
27     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
28     release: {{ include "common.release" . }}
29     heritage: {{ .Release.Service }}
30 spec:
31   replicas: {{ .Values.replicaCount }}
32   selector:
33     matchLabels:
34       app: {{ include "common.name" . }}
35   template:
36     metadata:
37       labels:
38         app: {{ include "common.name" . }}
39         release: {{ include "common.release" . }}
40       name: {{ include "common.name" . }}
41       annotations:
42         checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
43       {{- if .Values.global.msbEnabled }}
44         {{ $values := .Values }}
45         msb.onap.org/service-info: '[
46         {{- range $api_endpoint := $values.aai_enpoints -}}
47           {{- range $api_version := $values.api_list }}
48           {
49               "serviceName": "_{{ $api_endpoint.name }}",
50               "version": "v{{ $api_version }}",
51               "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
52               "protocol": "REST",
53               "port": "8446",
54               "enable_ssl": true,
55               "lb_policy":"ip_hash",
56               "visualRange": "1",
57               "path": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}"
58           },
59           {
60               "serviceName": "{{ $api_endpoint.name }}",
61               "version": "v{{ $api_version }}",
62               "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
63               "protocol": "REST",
64               "port": "8446",
65               "enable_ssl": true,
66               "lb_policy":"ip_hash",
67               "visualRange": "1"
68           },
69           {{- end }}
70         {{- end }}
71           {
72               "serviceName": "_aai-named-query",
73               "url": "/aai/search",
74               "protocol": "REST",
75               "port": "8446",
76               "enable_ssl": true,
77               "lb_policy":"ip_hash",
78               "visualRange": "1",
79               "path": "/aai/search"
80           },
81           {
82               "serviceName": "aai-named-query",
83               "url": "/aai/search",
84               "protocol": "REST",
85               "port": "8446",
86               "enable_ssl": true,
87               "lb_policy":"ip_hash",
88               "visualRange": "1"
89           }
90           ]'
91       {{- end }}
92     spec:
93       hostname: aai-traversal
94       initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
95       - command:
96         - /app/ready.py
97         args:
98       {{- if .Values.global.jobs.migration.enabled }}
99         - --job-name
100         - {{ include "common.release" . }}-aai-graphadmin-migration
101       {{- else  }}
102         {{- if .Values.global.jobs.createSchema.enabled  }}
103         - --job-name
104         - {{ include "common.release" . }}-aai-graphadmin-create-db-schema
105         {{- else }}
106         - --container-name
107           {{- if .Values.global.cassandra.localCluster }}
108         - aai-cassandra
109           {{- else }}
110         - cassandra
111           {{- end }}
112         - --container-name
113         - aai-schema-service
114         {{- end }}
115       {{- end }}
116         env:
117         - name: NAMESPACE
118           valueFrom:
119             fieldRef:
120               apiVersion: v1
121               fieldPath: metadata.namespace
122         image: {{ include "repositoryGenerator.image.readiness" . }}
123         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
124         name: {{ include "common.name" . }}-readiness
125       containers:
126       - name: {{ include "common.name" . }}
127         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
128         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
129         command:
130         - sh
131         args:
132         - -c
133         - |
134           echo "*** retrieve Truststore and Keystore password"
135           export $(cat {{ .Values.certInitializer.credsPath }}/mycreds.prop | xargs -0)
136           echo "*** actual launch of AAI Resources"
137           /bin/bash /opt/app/aai-traversal/docker-entrypoint.sh
138         env:
139         - name: TRUSTORE_ALL_PASSWORD
140           value: {{ .Values.certInitializer.truststorePassword }}
141         - name: DISABLE_UPDATE_QUERY
142           value: {{ .Values.config.disableUpdateQuery | quote }}
143         - name: LOCAL_USER_ID
144           value: {{ .Values.global.config.userId | quote }}
145         - name: LOCAL_GROUP_ID
146           value: {{ .Values.global.config.groupId | quote }}
147         volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
148         - mountPath: /etc/localtime
149           name: localtime
150           readOnly: true
151         - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-realtime.properties
152           name: {{ include "common.fullname" . }}-config
153           subPath: janusgraph-realtime.properties
154         - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-cached.properties
155           name: {{ include "common.fullname" . }}-config
156           subPath: janusgraph-cached.properties
157         - mountPath: /opt/app/aai-traversal/resources/etc/appprops/aaiconfig.properties
158           name: {{ include "common.fullname" . }}-config
159           subPath: aaiconfig.properties
160         - mountPath: /opt/aai/logroot/AAI-GQ
161           name: {{ include "common.fullname" . }}-logs
162         - mountPath: /opt/aai/logroot/AAI-GQ/misc
163           name: {{ include "common.fullname" . }}-logs-misc
164         - mountPath: /opt/app/aai-traversal/resources/logback.xml
165           name: {{ include "common.fullname" . }}-config
166           subPath: logback.xml
167         - mountPath: /opt/app/aai-traversal/resources/localhost-access-logback.xml
168           name: {{ include "common.fullname" . }}-config
169           subPath: localhost-access-logback.xml
170         - mountPath: /opt/app/aai-traversal/resources/etc/auth/realm.properties
171           name: {{ include "common.fullname" . }}-config
172           subPath: realm.properties
173         - mountPath: /opt/app/aai-traversal/resources/aaf/bath_config.csv
174           name: {{ include "common.fullname" . }}-aaf-certs
175           subPath: bath_config.csv
176         - mountPath: /opt/app/aai-traversal/resources/aaf/org.onap.aai.props
177           name: {{ include "common.fullname" . }}-aaf-properties
178           subPath: org.onap.aai.props
179         - mountPath: /opt/app/aai-traversal/resources/aaf/org.osaaf.location.props
180           name: {{ include "common.fullname" . }}-aaf-properties
181           subPath: org.osaaf.location.props
182         - mountPath: /opt/app/aai-traversal/resources/aaf/permissions.properties
183           name: {{ include "common.fullname" . }}-aaf-properties
184           subPath: permissions.properties
185         - mountPath: /opt/app/aai-traversal/resources/cadi.properties
186           name: {{ include "common.fullname" . }}-aaf-properties
187           subPath: cadi.properties
188         - mountPath: /opt/app/aai-traversal/resources/application.properties
189           name: {{ include "common.fullname" . }}-config
190           subPath: application.properties
191         - mountPath: /opt/app/aai-traversal/resources/application-keycloak.properties
192           name: {{ include "common.fullname" . }}-config
193           subPath: application-keycloak.properties
194         ports:
195         - containerPort: {{ .Values.service.internalPort }}
196         - containerPort: {{ .Values.service.internalPort2 }}
197         # disable liveness probe when breakpoints set in debugger
198         # so K8s doesn't restart unresponsive container
199         {{ if .Values.liveness.enabled }}
200         livenessProbe:
201           tcpSocket:
202             port: {{ .Values.service.internalPort }}
203           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
204           periodSeconds: {{ .Values.liveness.periodSeconds }}
205         {{ end }}
206         readinessProbe:
207           tcpSocket:
208             port: {{ .Values.service.internalPort }}
209           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
210           periodSeconds: {{ .Values.readiness.periodSeconds }}
211         resources:
212 {{ include "common.resources" . }}
213       {{- if .Values.nodeSelector }}
214       nodeSelector:
215 {{ toYaml .Values.nodeSelector | indent 8 }}
216       {{- end }}
217       {{- if .Values.affinity }}
218       affinity:
219 {{ toYaml .Values.affinity | indent 8 }}
220       {{- end }}
221
222       # side car containers
223       - name: filebeat-onap
224         image: {{ include "repositoryGenerator.image.logging" . }}
225         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
226         volumeMounts:
227         - mountPath: /usr/share/filebeat/filebeat.yml
228           subPath: filebeat.yml
229           name: filebeat-conf
230         - mountPath: /var/log/onap
231           name: {{ include "common.fullname" . }}-logs
232         - mountPath: /usr/share/filebeat/data
233           name: {{ include "common.fullname" . }}-filebeat
234         resources:
235 {{ include "common.resources" . }}
236       volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
237       - name: localtime
238         hostPath:
239           path: /etc/localtime
240       - name: filebeat-conf
241         configMap:
242           name: aai-filebeat
243       - name: {{ include "common.fullname" . }}-logs
244         emptyDir: {}
245       - name: {{ include "common.fullname" . }}-logs-misc
246         emptyDir: {}
247       - name: {{ include "common.fullname" . }}-filebeat
248         emptyDir: {}
249       - name: {{ include "common.fullname" . }}-config
250         configMap:
251           name: {{ include "common.fullname" . }}
252       - name: {{ include "common.fullname" . }}-aaf-properties
253         configMap:
254           name: {{ include "common.fullname" . }}-aaf-props
255       - name: {{ include "common.fullname" . }}-aaf-certs
256         secret:
257           secretName: {{ include "common.fullname" . }}-aaf
258       - name: aai-common-aai-auth-mount
259         secret:
260           secretName: aai-common-aai-auth
261       restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
262       imagePullSecrets:
263       - name: "{{ include "common.namespace" . }}-docker-registry-key"