d5854918b57d806726e9cd5c6ddedb78fc82c83b
[oom.git] / kubernetes / aai / components / aai-graphadmin / templates / job-migration.yaml
1 {{/*
2 #
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.
8 # Copyright (c) 2020-2021 Orange Intellectual Property. All rights reserved.
9 # Modifications Copyright © 2023 Nordix Foundation
10 # ================================================================================
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
35 */}}
36
37 {{- if .Values.global.jobs.migration.enabled }}
38 ---
39 apiVersion: batch/v1
40 kind: Job
41 metadata:
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
53 spec:
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:
62       initContainers:
63       - command:
64         - /app/ready.py
65         args:
66         - --container-name
67         {{- if .Values.global.cassandra.localCluster }}
68         - aai-cassandra
69         {{- else }}
70         - cassandra
71         {{- end }}
72         - --container-name
73         - aai-schema-service
74         env:
75         - name: NAMESPACE
76           valueFrom:
77             fieldRef:
78               apiVersion: v1
79               fieldPath: metadata.namespace
80         image: {{ include "repositoryGenerator.image.readiness" . }}
81         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
82         name: {{ include "common.name" . }}-readiness
83       - command:
84         - sh
85         args:
86         - -c
87         - |
88            bash docker-entrypoint.sh dataRestoreFromSnapshot.sh `ls -t /opt/app/aai-graphadmin/logs/data/dataSnapshots|head -1|awk -F".P" '{ print $1 }'`
89         env:
90         - name: LOCAL_USER_ID
91           value: {{ .Values.securityContext.user_id | quote }}
92         - name: LOCAL_GROUP_ID
93           value: {{ .Values.securityContext.group_id | quote }}
94         volumeMounts:
95         - mountPath: /etc/localtime
96           name: localtime
97           readOnly: true
98         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
99           name: config
100           subPath: janusgraph-realtime.properties
101         - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
102           name: snapshots
103         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
104           name: config
105           subPath: janusgraph-cached.properties
106         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
107           name: properties
108           subPath: aaiconfig.properties
109         - mountPath: /opt/aai/logroot/AAI-GA
110           name: logs
111         - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
112           name: config
113           subPath: logback.xml
114         - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
115           name: config
116           subPath: localhost-access-logback.xml
117         - mountPath: /opt/app/aai-graphadmin/resources/application.properties
118           name: properties
119           subPath: application.properties
120         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
121         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
122         name: {{ include "common.name" . }}-restore-backup
123       containers:
124       - image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
125         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
126         name: {{ include "common.name" . }}-perform-migration
127         command:
128         - sh
129         args:
130         - -c
131         - |
132            {{- if include "common.onServiceMesh" . }}
133            echo "waiting 15s for istio side cars to be up"; sleep 15s;{{- end }}
134            bash docker-entrypoint.sh run_Migrations.sh -e UpdateAaiUriIndexMigration --commit --skipPreMigrationSnapShot --runDisabled RebuildAllEdges ;
135            {{ include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
136         env:
137         - name: LOCAL_USER_ID
138           value: {{ .Values.securityContext.user_id | quote }}
139         - name: LOCAL_GROUP_ID
140           value: {{ .Values.securityContext.group_id | quote }}
141         volumeMounts:
142         - mountPath: /etc/localtime
143           name: localtime
144           readOnly: true
145         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
146           name: config
147           subPath: janusgraph-realtime.properties
148         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
149           name: config
150           subPath: janusgraph-cached.properties
151         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
152           name: properties
153           subPath: aaiconfig.properties
154         - mountPath: /opt/aai/logroot/AAI-GA
155           name: logs
156         - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
157           name: config
158           subPath: logback.xml
159         - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
160           name: config
161           subPath: localhost-access-logback.xml
162         - mountPath: /opt/app/aai-graphadmin/resources/application.properties
163           name: properties
164           subPath: application.properties
165         resources: {{ include "common.resources" . | nindent 10 }}
166       {{- if .Values.nodeSelector }}
167       nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
168       {{- end }}
169       {{- if .Values.affinity }}
170       affinity: {{ toYaml .Values.affinity | nindent 8 }}
171       {{- end }}
172       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
173       volumes:
174       - name: localtime
175         hostPath:
176           path: /etc/localtime
177       {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 8 }}
178       - name: {{ include "common.fullname" . }}-logs
179         emptyDir: {}
180       - name: {{ include "common.fullname" . }}-config
181         configMap:
182           name: {{ include "common.fullname" . }}-configmap
183       - name: {{ include "common.fullname" . }}-snapshots
184         persistentVolumeClaim:
185           claimName: {{ include "common.fullname" . }}-migration
186       - name: properties
187         configMap:
188           name: {{ include "common.fullname" . }}-properties
189       restartPolicy: Never
190       imagePullSecrets:
191       - name: "{{ include "common.namespace" . }}-docker-registry-key"
192 ---
193 apiVersion: batch/v1
194 kind: Job
195 metadata:
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
207 spec:
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:
216       initContainers:
217       {{ if eq .Values.global.jobs.migration.remoteCassandra.enabled false }}
218       - command:
219         - /bin/bash
220         - -c
221         - /app/ready.py --container-name aai-cassandra --timeout 1 || /app/ready.py --container-name cassandra
222         env:
223         - name: NAMESPACE
224           valueFrom:
225             fieldRef:
226               apiVersion: v1
227               fieldPath: metadata.namespace
228         image: {{ include "repositoryGenerator.image.readiness" . }}
229         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
234         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
235         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
236         command:
237         - sh
238         args:
239         - -c
240         - |
241            {{- if include "common.onServiceMesh" . }}
242            echo "waiting 15s for istio side cars to be up"; sleep 15s;{{- end }}
243            bash docker-entrypoint.sh dataSnapshot.sh
244            {{ include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
245         env:
246         - name: LOCAL_USER_ID
247           value: {{ .Values.securityContext.user_id | quote }}
248         - name: LOCAL_GROUP_ID
249           value: {{ .Values.securityContext.group_id | quote }}
250         volumeMounts:
251         - mountPath: /etc/localtime
252           name: localtime
253           readOnly: true
254         - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
255           name: snapshots
256         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
257           name: migration
258           subPath: janusgraph-migration-real.properties
259         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
260           name: migration
261           subPath: janusgraph-migration-cached.properties
262         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
263           name: properties
264           subPath: aaiconfig.properties
265         - mountPath: /opt/aai/logroot/AAI-RES/
266           name: logs
267         - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
268           name: config
269           subPath: logback.xml
270         - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
271           name: config
272           subPath: localhost-access-logback.xml
273         - mountPath: /opt/app/aai-graphadmin/resources/application.properties
274           name: properties
275           subPath: application.properties
276         resources: {{ include "common.resources" . | nindent 10 }}
277       {{- if .Values.nodeSelector }}
278       nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
279       {{- end }}
280       {{- if .Values.affinity }}
281       affinity: {{ toYaml .Values.affinity | nindent 8 }}
282       {{- end }}
283       serviceAccountName: {{ include "common.fullname" (dict "suffix" "read" "dot" . )}}
284       volumes: {{ include "common.resources" . | nindent 10 }}
285       - name: localtime
286         hostPath:
287           path: /etc/localtime
288       - name: logs
289         emptyDir: {}
290       - name: config
291         configMap:
292           name: {{ include "common.fullname" . }}
293       - name: properties-input
294         configMap:
295           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
303         persistentVolumeClaim:
304           claimName: {{ include "common.fullname" . }}-migration
305       restartPolicy: Never
306       imagePullSecrets:
307       - name: "{{ include "common.namespace" . }}-docker-registry-key"
308 {{ end }}