blob: 7e54f1d432d7df96d51968c8da1b5b7ce5f5ed39 [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
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100191 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 }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100213 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100214 {{- if .Values.affinity }}
215 affinity:
216{{ toYaml .Values.affinity | indent 8 }}
217 {{- end }}
218
219 # side car containers
220 - name: filebeat-onap
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100221 image: {{ include "repositoryGenerator.image.logging" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100222 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" . }}
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100233 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100234 - 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:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100248 name: {{ include "common.fullname" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100249 - name: {{ include "common.fullname" . }}-aaf-properties
250 configMap:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100251 name: {{ include "common.fullname" . }}-aaf-props
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100252 - name: {{ include "common.fullname" . }}-aaf-certs
253 secret:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100254 secretName: {{ include "common.fullname" . }}-aaf
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100255 - name: aai-common-aai-auth-mount
256 secret:
257 secretName: aai-common-aai-auth
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100258 restartPolicy: {{ .Values.global.restartPolicy | default .Values.restartPolicy }}
259 imagePullSecrets:
260 - name: "{{ include "common.namespace" . }}-docker-registry-key"