blob: 2973245dfdac62ab9de2d31c7e7bfb39068ecbec [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" . }}-db-backup
43 namespace: {{ include "common.namespace" . }}
44 labels:
45 app: {{ include "common.name" . }}-job
46 release: {{ include "common.release" . }}
47 heritage: {{ .Release.Service }}
48 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
49 annotations:
50 "helm.sh/hook": pre-upgrade,pre-install
51 "helm.sh/hook-weight": "2"
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 {{ if eq .Values.global.jobs.migration.remoteCassandra.enabled false }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010064 - command:
65 - /bin/bash
66 - -c
67 - /app/ready.py --container-name aai-cassandra --timeout 1 || /app/ready.py --container-name cassandra
68 env:
69 - name: NAMESPACE
70 valueFrom:
71 fieldRef:
72 apiVersion: v1
73 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010074 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010075 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
76 name: {{ include "common.name" . }}-db-backup-readiness
77 {{- end }}
78 containers:
79 - name: {{ include "common.name" . }}-db-backup-job
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010080 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010081 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82 command:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010083 - sh
84 args:
osk1146127fd7d82021-06-18 00:51:17 +020085 - -c
86 - |
Andreas Geissler8624d222022-05-13 17:16:41 +020087 {{- if include "common.onServiceMesh" . }}
88 echo "waiting 15s for istio side cars to be up"; sleep 15s;{{- end }}
89 bash docker-entrypoint.sh dataSnapshot.sh;
othman touijer51176672021-12-01 16:21:18 +010090 {{ include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010091 env:
92 - name: LOCAL_USER_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010093 value: {{ .Values.securityContext.user_id | quote }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010094 - name: LOCAL_GROUP_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010095 value: {{ .Values.securityContext.group_id | quote }}
efiacord12c1672023-03-23 12:10:50 +000096 volumeMounts:
Sylvain Desbureaux70070412020-11-09 21:58:48 +010097 - mountPath: /etc/localtime
98 name: localtime
99 readOnly: true
100 - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100101 name: snapshots
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100102 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100103 name: migration
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100104 subPath: janusgraph-migration-real.properties
105 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100106 name: migration
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100107 subPath: janusgraph-migration-cached.properties
108 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100109 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100110 subPath: aaiconfig.properties
111 - mountPath: /opt/aai/logroot/AAI-RES/
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100112 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100113 - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100114 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100115 subPath: logback.xml
116 - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100117 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100118 subPath: localhost-access-logback.xml
119 - mountPath: /opt/app/aai-graphadmin/resources/application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100120 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100121 subPath: application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100122 resources: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100123 {{- if .Values.nodeSelector }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100124 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100125 {{- end }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100126 {{- if .Values.affinity }}
127 affinity: {{ toYaml .Values.affinity | nindent 8 }}
128 {{- end }}
efiacord12c1672023-03-23 12:10:50 +0000129 volumes:
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100130 - name: localtime
131 hostPath:
132 path: /etc/localtime
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100133 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100134 emptyDir: {}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100135 - name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100136 configMap:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100137 name: {{ include "common.fullname" . }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100138 - name: properties
othman touijer51176672021-12-01 16:21:18 +0100139 configMap:
140 name: {{ include "common.fullname" . }}-properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100141 - name: migration
142 configMap:
143 name: {{ include "common.fullname" . }}-migration
144 - name: snapshots
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100145 persistentVolumeClaim:
146 claimName: {{ include "common.fullname" . }}-migration
147 restartPolicy: Never
148 imagePullSecrets:
149 - name: "{{ include "common.namespace" . }}-docker-registry-key"
150{{ end }}