blob: bf3279fde763b8fd4ded01efb8f70e781e9074e5 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002#
3# ============LICENSE_START=======================================================
4# org.onap.aai
5# ================================================================================
6# Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
7# Copyright (c) 2020 Nokia Intellectual Property. All rights reserved.
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +01008# Copyright (c) 2020-2021 Orange Intellectual Property. All rights reserved.
efiacord12c1672023-03-23 12:10:50 +00009# Modifications Copyright © 2023 Nordix Foundation
Sylvain Desbureaux70070412020-11-09 21:58:48 +010010# ================================================================================
11# Licensed under the Apache License, Version 2.0 (the "License");
12# you may not use this file except in compliance with the License.
13# You may obtain a copy of the License at
14#
15# http://www.apache.org/licenses/LICENSE-2.0
16#
17# Unless required by applicable law or agreed to in writing, software
18# distributed under the License is distributed on an "AS IS" BASIS,
19# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20# See the License for the specific language governing permissions and
21# limitations under the License.
22# ============LICENSE_END=========================================================
23
24# In ONAP, the following job will always be run on each installation
25# The following job will go through the latest oxm and
26# create properties based on the data type defined in the oxm
27# and create the required indexes for the appropriate properties
28# This can be run multiple times as the code if the index or property already exists
29# then the index or property won't be created again
30# NOTE - During the execution of the createSchema job, there should
31# be no other janusgraph connection to the graph as its the reason
32# that resources traversal and graphadmin wait until this job is done
33# If you are using an existing cassandra cluster not coming from oom
34# then it is your job to ensure that there are no connections to the database
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010035*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010036
37{{- if .Values.global.jobs.migration.enabled }}
38---
39apiVersion: batch/v1
40kind: Job
41metadata:
42 name: {{ include "common.fullname" . }}-migration
43 namespace: {{ include "common.namespace" . }}
44 labels:
45 app: {{ include "common.name" . }}-job
46 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
47 release: {{ include "common.release" . }}
48 heritage: {{ .Release.Service }}
49 annotations:
50 "helm.sh/hook": post-upgrade,post-rollback,post-install
51 "helm.sh/hook-weight": "1"
52 "helm.sh/hook-delete-policy": before-hook-creation
53spec:
54 backoffLimit: 20
55 template:
56 metadata:
57 labels:
58 app: {{ include "common.name" . }}-job
59 release: {{ include "common.release" . }}
60 name: {{ include "common.name" . }}
61 spec:
efiacord12c1672023-03-23 12:10:50 +000062 initContainers:
Sylvain Desbureaux70070412020-11-09 21:58:48 +010063 - command:
64 - /app/ready.py
65 args:
Andreas Geisslercfd84342023-08-16 17:18:49 +020066 - --app-name
Sylvain Desbureaux70070412020-11-09 21:58:48 +010067 {{- if .Values.global.cassandra.localCluster }}
Andreas Geisslerb0530252023-11-10 11:28:49 +010068 - aai-cassandra
Sylvain Desbureaux70070412020-11-09 21:58:48 +010069 {{- else }}
Andreas Geisslerb0530252023-11-10 11:28:49 +010070 - cassandra
Sylvain Desbureaux70070412020-11-09 21:58:48 +010071 {{- end }}
72 - --container-name
73 - aai-schema-service
74 env:
75 - name: NAMESPACE
76 valueFrom:
77 fieldRef:
78 apiVersion: v1
79 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010080 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010081 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82 name: {{ include "common.name" . }}-readiness
83 - command:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010084 - sh
85 args:
Sylvain Desbureaux70070412020-11-09 21:58:48 +010086 - -c
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010087 - |
88 bash docker-entrypoint.sh dataRestoreFromSnapshot.sh `ls -t /opt/app/aai-graphadmin/logs/data/dataSnapshots|head -1|awk -F".P" '{ print $1 }'`
Sylvain Desbureaux70070412020-11-09 21:58:48 +010089 env:
90 - name: LOCAL_USER_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010091 value: {{ .Values.securityContext.user_id | quote }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010092 - name: LOCAL_GROUP_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010093 value: {{ .Values.securityContext.group_id | quote }}
efiacord12c1672023-03-23 12:10:50 +000094 volumeMounts:
Sylvain Desbureaux70070412020-11-09 21:58:48 +010095 - mountPath: /etc/localtime
96 name: localtime
97 readOnly: true
98 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010099 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100100 subPath: janusgraph-realtime.properties
101 - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100102 name: snapshots
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100103 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100104 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100105 subPath: janusgraph-cached.properties
106 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100107 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100108 subPath: aaiconfig.properties
109 - mountPath: /opt/aai/logroot/AAI-GA
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100110 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100111 - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100112 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100113 subPath: logback.xml
114 - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100115 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100116 subPath: localhost-access-logback.xml
117 - mountPath: /opt/app/aai-graphadmin/resources/application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100118 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100119 subPath: application.properties
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100120 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100121 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
122 name: {{ include "common.name" . }}-restore-backup
123 containers:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100124 - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100125 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
126 name: {{ include "common.name" . }}-perform-migration
127 command:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100128 - sh
129 args:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100130 - -c
osk1146127fd7d82021-06-18 00:51:17 +0200131 - |
Andreas Geissler8624d222022-05-13 17:16:41 +0200132 {{- if include "common.onServiceMesh" . }}
133 echo "waiting 15s for istio side cars to be up"; sleep 15s;{{- end }}
osk1146127fd7d82021-06-18 00:51:17 +0200134 bash docker-entrypoint.sh run_Migrations.sh -e UpdateAaiUriIndexMigration --commit --skipPreMigrationSnapShot --runDisabled RebuildAllEdges ;
othman touijer51176672021-12-01 16:21:18 +0100135 {{ include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100136 env:
137 - name: LOCAL_USER_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100138 value: {{ .Values.securityContext.user_id | quote }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100139 - name: LOCAL_GROUP_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100140 value: {{ .Values.securityContext.group_id | quote }}
efiacord12c1672023-03-23 12:10:50 +0000141 volumeMounts:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100142 - mountPath: /etc/localtime
143 name: localtime
144 readOnly: true
145 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100146 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100147 subPath: janusgraph-realtime.properties
148 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100149 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100150 subPath: janusgraph-cached.properties
151 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100152 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100153 subPath: aaiconfig.properties
154 - mountPath: /opt/aai/logroot/AAI-GA
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100155 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100156 - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100157 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100158 subPath: logback.xml
159 - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100160 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100161 subPath: localhost-access-logback.xml
162 - mountPath: /opt/app/aai-graphadmin/resources/application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100163 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100164 subPath: application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100165 resources: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100166 {{- if .Values.nodeSelector }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100167 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100168 {{- end }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100169 {{- if .Values.affinity }}
170 affinity: {{ toYaml .Values.affinity | nindent 8 }}
171 {{- end }}
Andreas Geisslerceac2602023-07-17 18:55:54 +0200172 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
efiacord12c1672023-03-23 12:10:50 +0000173 volumes:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100174 - name: localtime
175 hostPath:
176 path: /etc/localtime
Maciej Wereskid523d122021-09-21 11:22:13 +0200177 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100178 - name: {{ include "common.fullname" . }}-logs
179 emptyDir: {}
180 - name: {{ include "common.fullname" . }}-config
181 configMap:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100182 name: {{ include "common.fullname" . }}-configmap
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100183 - name: {{ include "common.fullname" . }}-snapshots
184 persistentVolumeClaim:
185 claimName: {{ include "common.fullname" . }}-migration
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100186 - name: properties
othman touijer51176672021-12-01 16:21:18 +0100187 configMap:
188 name: {{ include "common.fullname" . }}-properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100189 restartPolicy: Never
190 imagePullSecrets:
191 - name: "{{ include "common.namespace" . }}-docker-registry-key"
192---
193apiVersion: batch/v1
194kind: Job
195metadata:
196 name: {{ include "common.fullname" . }}-db-backup-job
197 namespace: {{ include "common.namespace" . }}
198 labels:
199 app: {{ include "common.name" . }}-db-backup-job
200 release: {{ include "common.release" . }}
201 heritage: {{ .Release.Service }}
202 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
203 annotations:
204 "helm.sh/hook": pre-upgrade,pre-install
205 "helm.sh/hook-weight": "2"
206 "helm.sh/hook-delete-policy": before-hook-creation
207spec:
208 backoffLimit: 20
209 template:
210 metadata:
211 labels:
212 app: {{ include "common.name" . }}-db-backup-job
213 release: {{ include "common.release" . }}
214 name: {{ include "common.name" . }}
215 spec:
efiacord12c1672023-03-23 12:10:50 +0000216 initContainers:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100217 {{ if eq .Values.global.jobs.migration.remoteCassandra.enabled false }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100218 - command:
219 - /bin/bash
220 - -c
Andreas Geisslercfd84342023-08-16 17:18:49 +0200221 - /app/ready.py --app-name aai-cassandra --timeout 1 || /app/ready.py --app-name cassandra
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100222 env:
223 - name: NAMESPACE
224 valueFrom:
225 fieldRef:
226 apiVersion: v1
227 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100228 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100229 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
230 name: {{ include "common.name" . }}-db-backup-readiness
231 {{- end }}
232 containers:
233 - name: {{ include "common.name" . }}-db-backup-job
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100234 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100235 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
236 command:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100237 - sh
238 args:
osk1146127fd7d82021-06-18 00:51:17 +0200239 - -c
240 - |
Andreas Geissler8624d222022-05-13 17:16:41 +0200241 {{- if include "common.onServiceMesh" . }}
242 echo "waiting 15s for istio side cars to be up"; sleep 15s;{{- end }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100243 bash docker-entrypoint.sh dataSnapshot.sh
othman touijer51176672021-12-01 16:21:18 +0100244 {{ include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100245 env:
246 - name: LOCAL_USER_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100247 value: {{ .Values.securityContext.user_id | quote }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100248 - name: LOCAL_GROUP_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100249 value: {{ .Values.securityContext.group_id | quote }}
efiacord12c1672023-03-23 12:10:50 +0000250 volumeMounts:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100251 - mountPath: /etc/localtime
252 name: localtime
253 readOnly: true
254 - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100255 name: snapshots
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100256 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100257 name: migration
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100258 subPath: janusgraph-migration-real.properties
259 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100260 name: migration
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100261 subPath: janusgraph-migration-cached.properties
262 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100263 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100264 subPath: aaiconfig.properties
265 - mountPath: /opt/aai/logroot/AAI-RES/
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100266 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100267 - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100268 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100269 subPath: logback.xml
270 - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100271 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100272 subPath: localhost-access-logback.xml
273 - mountPath: /opt/app/aai-graphadmin/resources/application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100274 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100275 subPath: application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100276 resources: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100277 {{- if .Values.nodeSelector }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100278 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100279 {{- end }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100280 {{- if .Values.affinity }}
281 affinity: {{ toYaml .Values.affinity | nindent 8 }}
282 {{- end }}
Andreas Geisslerceac2602023-07-17 18:55:54 +0200283 serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100284 volumes: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100285 - name: localtime
286 hostPath:
287 path: /etc/localtime
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100288 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100289 emptyDir: {}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100290 - name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100291 configMap:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100292 name: {{ include "common.fullname" . }}
293 - name: properties-input
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100294 configMap:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100295 name: {{ include "common.fullname" . }}-properties
296 - name: properties
297 emptyDir:
298 medium: Memory
299 - name: migration
300 configMap:
301 name: {{ include "common.fullname" . }}-migration
302 - name: snapshots
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100303 persistentVolumeClaim:
304 claimName: {{ include "common.fullname" . }}-migration
305 restartPolicy: Never
306 imagePullSecrets:
307 - name: "{{ include "common.namespace" . }}-docker-registry-key"
308{{ end }}