blob: dc1c010261fa42486866c61b4278f6cfc13d6c5e [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright (c) 2017 Amdocs, Bell Canada
3# Modifications Copyright (c) 2018 AT&T
Sylvain Desbureaux5b651322020-12-07 15:34:15 +01004# Modifications Copyright (c) 2020 Nokia, Orange
Sylvain Desbureaux331f0042021-01-18 11:38:49 +01005# Modifications Copyright (c) 2021 Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01006#
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.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010018*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010019
20apiVersion: apps/v1
21kind: Deployment
22metadata:
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 }}
30spec:
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 }}
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010043 {{- if .Values.global.msbEnabled }}
44 {{ $values := .Values }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010045 msb.onap.org/service-info: '[
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010046 {{- range $api_endpoint := $values.aai_enpoints -}}
47 {{- range $api_version := $values.api_list }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010048 {
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010049 "serviceName": "_{{ $api_endpoint.name }}",
50 "version": "v{{ $api_version }}",
51 "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
Sylvain Desbureaux70070412020-11-09 21:58:48 +010052 "protocol": "REST",
53 "port": "8446",
54 "enable_ssl": true,
55 "lb_policy":"ip_hash",
56 "visualRange": "1",
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010057 "path": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010058 },
59 {
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010060 "serviceName": "{{ $api_endpoint.name }}",
61 "version": "v{{ $api_version }}",
62 "url": "/aai/v{{ $api_version }}/{{ $api_endpoint.url }}",
Sylvain Desbureaux70070412020-11-09 21:58:48 +010063 "protocol": "REST",
64 "port": "8446",
65 "enable_ssl": true,
66 "lb_policy":"ip_hash",
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010067 "visualRange": "1"
Sylvain Desbureaux70070412020-11-09 21:58:48 +010068 },
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010069 {{- end }}
70 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010071 {
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 {
Sylvain Desbureaux70070412020-11-09 21:58:48 +010082 "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 ]'
Sylvain Desbureaux331f0042021-01-18 11:38:49 +010091 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010092 spec:
93 hostname: aai-traversal
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +010094 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010095 - command:
Sylvain Desbureaux70070412020-11-09 21:58:48 +010096 - /app/ready.py
97 args:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +010098 {{- if .Values.global.jobs.migration.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010099 - --job-name
100 - {{ include "common.release" . }}-aai-graphadmin-migration
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100101 {{- else }}
102 {{- if .Values.global.jobs.createSchema.enabled }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100103 - --job-name
104 - {{ include "common.release" . }}-aai-graphadmin-create-db-schema
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100105 {{- else }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100106 - --container-name
107 {{- if .Values.global.cassandra.localCluster }}
108 - aai-cassandra
109 {{- else }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100110 - cassandra
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100111 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100112 - --container-name
113 - aai-schema-service
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100114 {{- end }}
115 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100116 env:
117 - name: NAMESPACE
118 valueFrom:
119 fieldRef:
120 apiVersion: v1
121 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100122 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100123 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
124 name: {{ include "common.name" . }}-readiness
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100125 containers:
126 - name: {{ include "common.name" . }}
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100127 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100128 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100129 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
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100138 env:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100139 - name: TRUSTORE_ALL_PASSWORD
Sylvain Desbureaux6b83dab2021-02-23 16:03:21 +0100140 value: {{ .Values.certInitializer.truststorePassword }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100141 - 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 }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100147 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100148 - 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
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100173 - 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
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100188 - mountPath: /opt/app/aai-traversal/resources/application.properties
189 name: {{ include "common.fullname" . }}-config
190 subPath: application.properties
Sam Huang56a6dd42021-03-26 13:27:17 -0600191 - mountPath: /opt/app/aai-traversal/resources/application-keycloak.properties
192 name: {{ include "common.fullname" . }}-config
193 subPath: application-keycloak.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100194 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 }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100216 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100217 {{- if .Values.affinity }}
218 affinity:
219{{ toYaml .Values.affinity | indent 8 }}
220 {{- end }}
221
222 # side car containers
223 - name: filebeat-onap
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100224 image: {{ include "repositoryGenerator.image.logging" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100225 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" . }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100236 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100237 - 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:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100251 name: {{ include "common.fullname" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100252 - name: {{ include "common.fullname" . }}-aaf-properties
253 configMap:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100254 name: {{ include "common.fullname" . }}-aaf-props
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100255 - name: {{ include "common.fullname" . }}-aaf-certs
256 secret:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100257 secretName: {{ include "common.fullname" . }}-aaf
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100258 - name: aai-common-aai-auth-mount
259 secret:
260 secretName: aai-common-aai-auth
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100261 restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
262 imagePullSecrets:
263 - name: "{{ include "common.namespace" . }}-docker-registry-key"