[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         ports:
192         - containerPort: {{ .Values.service.internalPort }}
193         - containerPort: {{ .Values.service.internalPort2 }}
194         # disable liveness probe when breakpoints set in debugger
195         # so K8s doesn't restart unresponsive container
196         {{ if .Values.liveness.enabled }}
197         livenessProbe:
198           tcpSocket:
199             port: {{ .Values.service.internalPort }}
200           initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }}
201           periodSeconds: {{ .Values.liveness.periodSeconds }}
202         {{ end }}
203         readinessProbe:
204           tcpSocket:
205             port: {{ .Values.service.internalPort }}
206           initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }}
207           periodSeconds: {{ .Values.readiness.periodSeconds }}
208         resources:
209 {{ include "common.resources" . }}
210       {{- if .Values.nodeSelector }}
211       nodeSelector:
212 {{ toYaml .Values.nodeSelector | indent 8 }}
213       {{- end }}
214       {{- if .Values.affinity }}
215       affinity:
216 {{ toYaml .Values.affinity | indent 8 }}
217       {{- end }}
218
219       # side car containers
220       - name: filebeat-onap
221         image: {{ include "repositoryGenerator.image.logging" . }}
222         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
223         volumeMounts:
224         - mountPath: /usr/share/filebeat/filebeat.yml
225           subPath: filebeat.yml
226           name: filebeat-conf
227         - mountPath: /var/log/onap
228           name: {{ include "common.fullname" . }}-logs
229         - mountPath: /usr/share/filebeat/data
230           name: {{ include "common.fullname" . }}-filebeat
231         resources:
232 {{ include "common.resources" . }}
233       volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
234       - name: localtime
235         hostPath:
236           path: /etc/localtime
237       - name: filebeat-conf
238         configMap:
239           name: aai-filebeat
240       - name: {{ include "common.fullname" . }}-logs
241         emptyDir: {}
242       - name: {{ include "common.fullname" . }}-logs-misc
243         emptyDir: {}
244       - name: {{ include "common.fullname" . }}-filebeat
245         emptyDir: {}
246       - name: {{ include "common.fullname" . }}-config
247         configMap:
248           name: {{ include "common.fullname" . }}
249       - name: {{ include "common.fullname" . }}-aaf-properties
250         configMap:
251           name: {{ include "common.fullname" . }}-aaf-props
252       - name: {{ include "common.fullname" . }}-aaf-certs
253         secret:
254           secretName: {{ include "common.fullname" . }}-aaf
255       - name: aai-common-aai-auth-mount
256         secret:
257           secretName: aai-common-aai-auth
258       restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
259       imagePullSecrets:
260       - name: "{{ include "common.namespace" . }}-docker-registry-key"