[AAI] Make AAI helm3 compatible
[oom.git] / kubernetes / aai / components / aai-graphadmin / templates / job-copy-db-backup.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 Orange Intellectual Property. All rights reserved.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13 #
14 #    http://www.apache.org/licenses/LICENSE-2.0
15 #
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END=========================================================
22
23 # In ONAP, the following job will always be run on each installation
24 # The following job will go through the latest oxm and
25 # create properties based on the data type defined in the oxm
26 # and create the required indexes for the appropriate properties
27 # This can be run multiple times as the code if the index or property already exists
28 # then the index or property won't be created again
29 # NOTE - During the execution of the createSchema job, there should
30 # be no other janusgraph connection to the graph as its the reason
31 # that resources traversal and graphadmin wait until this job is done
32 # If you are using an existing cassandra cluster not coming from oom
33 # then it is your job to ensure that there are no connections to the database
34 */}}
35
36 {{- if .Values.global.jobs.migration.enabled }}
37 ---
38 apiVersion: batch/v1
39 kind: Job
40 metadata:
41   name: {{ include "common.fullname" . }}-db-backup
42   namespace: {{ include "common.namespace" . }}
43   labels:
44     app: {{ include "common.name" . }}-job
45     release: {{ include "common.release" . }}
46     heritage: {{ .Release.Service }}
47     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
48   annotations:
49     "helm.sh/hook": pre-upgrade,pre-install
50     "helm.sh/hook-weight": "2"
51     "helm.sh/hook-delete-policy": before-hook-creation
52 spec:
53   backoffLimit: 20
54   template:
55     metadata:
56       labels:
57         app: {{ include "common.name" . }}-job
58         release: {{ include "common.release" . }}
59       name: {{ include "common.name" . }}
60     spec:
61       {{ if eq .Values.global.jobs.migration.remoteCassandra.enabled false }}
62       initContainers:
63       - command:
64         - /bin/bash
65         - -c
66         - /app/ready.py --container-name aai-cassandra --timeout 1 || /app/ready.py --container-name cassandra
67         env:
68         - name: NAMESPACE
69           valueFrom:
70             fieldRef:
71               apiVersion: v1
72               fieldPath: metadata.namespace
73         image: {{ include "repositoryGenerator.image.readiness" . }}
74         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
75         name: {{ include "common.name" . }}-db-backup-readiness
76       {{- end }}
77       containers:
78       - name: {{ include "common.name" . }}-db-backup-job
79         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
80         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
81         command:
82         - /bin/bash
83         - docker-entrypoint.sh
84         - dataSnapshot.sh
85         env:
86         - name: LOCAL_USER_ID
87           value: {{ .Values.global.config.userId | quote }}
88         - name: LOCAL_GROUP_ID
89           value: {{ .Values.global.config.groupId | quote }}
90         volumeMounts:
91         - mountPath: /etc/localtime
92           name: localtime
93           readOnly: true
94         - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
95           name: {{ include "common.fullname" . }}-snapshots
96         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
97           name: {{ include "common.fullname" . }}-migration
98           subPath: janusgraph-migration-real.properties
99         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
100           name: {{ include "common.fullname" . }}-migration
101           subPath: janusgraph-migration-cached.properties
102         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
103           name: {{ include "common.fullname" . }}-config
104           subPath: aaiconfig.properties
105         - mountPath: /opt/aai/logroot/AAI-RES/
106           name: {{ include "common.fullname" . }}-logs
107         - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
108           name: {{ include "common.fullname" . }}-config
109           subPath: logback.xml
110         - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
111           name: {{ include "common.fullname" . }}-config
112           subPath: localhost-access-logback.xml
113         - mountPath: /opt/app/aai-graphadmin/resources/application.properties
114           name: {{ include "common.fullname" . }}-config
115           subPath: application.properties
116         resources:
117 {{ include "common.resources" . | indent 10 }}
118       {{- if .Values.nodeSelector }}
119       nodeSelector:
120 {{ toYaml .Values.nodeSelector | indent 8 }}
121       {{- end -}}
122       {{- if .Values.affinity }}
123       affinity:
124 {{ toYaml .Values.affinity | indent 8 }}
125       {{- end }}
126       volumes:
127       - name: localtime
128         hostPath:
129           path: /etc/localtime
130       - name: {{ include "common.fullname" . }}-logs
131         emptyDir: {}
132       - name: {{ include "common.fullname" . }}-config
133         configMap:
134           name: {{ include "common.fullname" . }}-configmap
135       - name: {{ include "common.fullname" . }}-migration
136         configMap:
137           name: {{ include "common.fullname" . }}-migration-configmap
138       - name: {{ include "common.fullname" . }}-snapshots
139         persistentVolumeClaim:
140           claimName: {{ include "common.fullname" . }}-migration
141       restartPolicy: Never
142       imagePullSecrets:
143       - name: "{{ include "common.namespace" . }}-docker-registry-key"
144 {{ end }}