[AAI] Remove AAF/TLS config from charts
[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       volumes:
173       - name: localtime
174         hostPath:
175           path: /etc/localtime
176       {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 8 }}
177       - name: {{ include "common.fullname" . }}-logs
178         emptyDir: {}
179       - name: {{ include "common.fullname" . }}-config
180         configMap:
181           name: {{ include "common.fullname" . }}-configmap
182       - name: {{ include "common.fullname" . }}-snapshots
183         persistentVolumeClaim:
184           claimName: {{ include "common.fullname" . }}-migration
185       - name: properties
186         configMap:
187           name: {{ include "common.fullname" . }}-properties
188       restartPolicy: Never
189       imagePullSecrets:
190       - name: "{{ include "common.namespace" . }}-docker-registry-key"
191 ---
192 apiVersion: batch/v1
193 kind: Job
194 metadata:
195   name: {{ include "common.fullname" . }}-db-backup-job
196   namespace: {{ include "common.namespace" . }}
197   labels:
198     app: {{ include "common.name" . }}-db-backup-job
199     release: {{ include "common.release" . }}
200     heritage: {{ .Release.Service }}
201     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
202   annotations:
203     "helm.sh/hook": pre-upgrade,pre-install
204     "helm.sh/hook-weight": "2"
205     "helm.sh/hook-delete-policy": before-hook-creation
206 spec:
207   backoffLimit: 20
208   template:
209     metadata:
210       labels:
211         app: {{ include "common.name" . }}-db-backup-job
212         release: {{ include "common.release" . }}
213       name: {{ include "common.name" . }}
214     spec:
215       initContainers:
216       {{ if eq .Values.global.jobs.migration.remoteCassandra.enabled false }}
217       - command:
218         - /bin/bash
219         - -c
220         - /app/ready.py --container-name aai-cassandra --timeout 1 || /app/ready.py --container-name cassandra
221         env:
222         - name: NAMESPACE
223           valueFrom:
224             fieldRef:
225               apiVersion: v1
226               fieldPath: metadata.namespace
227         image: {{ include "repositoryGenerator.image.readiness" . }}
228         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
229         name: {{ include "common.name" . }}-db-backup-readiness
230       {{- end }}
231       containers:
232       - name: {{ include "common.name" . }}-db-backup-job
233         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
234         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
235         command:
236         - sh
237         args:
238         - -c
239         - |
240            {{- if include "common.onServiceMesh" . }}
241            echo "waiting 15s for istio side cars to be up"; sleep 15s;{{- end }}
242            bash docker-entrypoint.sh dataSnapshot.sh
243            {{ include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
244         env:
245         - name: LOCAL_USER_ID
246           value: {{ .Values.securityContext.user_id | quote }}
247         - name: LOCAL_GROUP_ID
248           value: {{ .Values.securityContext.group_id | quote }}
249         volumeMounts:
250         - mountPath: /etc/localtime
251           name: localtime
252           readOnly: true
253         - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
254           name: snapshots
255         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
256           name: migration
257           subPath: janusgraph-migration-real.properties
258         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
259           name: migration
260           subPath: janusgraph-migration-cached.properties
261         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
262           name: properties
263           subPath: aaiconfig.properties
264         - mountPath: /opt/aai/logroot/AAI-RES/
265           name: logs
266         - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
267           name: config
268           subPath: logback.xml
269         - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
270           name: config
271           subPath: localhost-access-logback.xml
272         - mountPath: /opt/app/aai-graphadmin/resources/application.properties
273           name: properties
274           subPath: application.properties
275         resources: {{ include "common.resources" . | nindent 10 }}
276       {{- if .Values.nodeSelector }}
277       nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
278       {{- end }}
279       {{- if .Values.affinity }}
280       affinity: {{ toYaml .Values.affinity | nindent 8 }}
281       {{- end }}
282       volumes: {{ include "common.resources" . | nindent 10 }}
283       - name: localtime
284         hostPath:
285           path: /etc/localtime
286       - name: logs
287         emptyDir: {}
288       - name: config
289         configMap:
290           name: {{ include "common.fullname" . }}
291       - name: properties-input
292         configMap:
293           name: {{ include "common.fullname" . }}-properties
294       - name: properties
295         emptyDir:
296           medium: Memory
297       - name: migration
298         configMap:
299           name: {{ include "common.fullname" . }}-migration
300       - name: snapshots
301         persistentVolumeClaim:
302           claimName: {{ include "common.fullname" . }}-migration
303       restartPolicy: Never
304       imagePullSecrets:
305       - name: "{{ include "common.namespace" . }}-docker-registry-key"
306 {{ end }}