b8adba81172df13c8b475cca12db72a2309412cb
[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-2021 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       initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
62       {{- if .Values.global.aafEnabled }}
63       - command:
64         - sh
65         args:
66         - -c
67         - |
68           echo "*** retrieve Truststore and Keystore password"
69           export $(cat {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop | xargs -0)
70           echo "*** obfuscate them "
71           export JETTY_UTIL_JAR=$(find /usr/local/jetty/lib/ -regextype sed -regex ".*jetty-util-[0-9].*.jar")
72           export KEYSTORE_PASSWORD=`java -cp ${JETTY_UTIL_JAR} org.eclipse.jetty.util.security.Password ${KEYSTORE_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
73           export KEYSTORE_JKS_PASSWORD=`java -cp ${JETTY_UTIL_JAR} org.eclipse.jetty.util.security.Password ${KEYSTORE_JKS_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
74           export TRUSTSTORE_PASSWORD=`java -cp ${JETTY_UTIL_JAR} org.eclipse.jetty.util.security.Password ${TRUSTSTORE_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
75           echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
76           echo "KEYSTORE_JKS_PASSWORD=${KEYSTORE_JKS_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
77           echo "TRUSTSTORE_PASSWORD=${TRUSTSTORE_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
78         image: {{ include "repositoryGenerator.image.jetty" . }}
79         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
80         name: {{ include "common.name" . }}-obfuscate
81         volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
82         securityContext:
83           runAsUser: {{ .Values.securityContext.user_id }}
84       - command:
85         - sh
86         args:
87         - -c
88         - |
89           echo "*** Set obfuscated Truststore and Keystore password into configuration file"
90           export $(cat {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop | xargs -0)
91           cd /config-input
92           for PFILE in `ls -1`
93           do
94             envsubst <${PFILE} >/config/${PFILE}
95           done
96         volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
97         - mountPath: /config-input
98           name: properties-input
99         - mountPath: /config
100           name: properties
101         image: {{ include "repositoryGenerator.image.envsubst" . }}
102         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
103         name: {{ include "common.name" . }}-update-config
104       {{- end }}
105       {{ if eq .Values.global.jobs.migration.remoteCassandra.enabled false }}
106       - command:
107         - /bin/bash
108         - -c
109         - /app/ready.py --container-name aai-cassandra --timeout 1 || /app/ready.py --container-name cassandra
110         env:
111         - name: NAMESPACE
112           valueFrom:
113             fieldRef:
114               apiVersion: v1
115               fieldPath: metadata.namespace
116         image: {{ include "repositoryGenerator.image.readiness" . }}
117         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
118         name: {{ include "common.name" . }}-db-backup-readiness
119       {{- end }}
120       containers:
121       - name: {{ include "common.name" . }}-db-backup-job
122         image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
123         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
124         command:
125         - sh
126         args:
127         - -c
128         - |
129            bash docker-entrypoint.sh dataSnapshot.sh
130            {{ include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
131         env:
132         - name: LOCAL_USER_ID
133           value: {{ .Values.securityContext.user_id | quote }}
134         - name: LOCAL_GROUP_ID
135           value: {{ .Values.securityContext.group_id | quote }}
136         volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
137         - mountPath: /etc/localtime
138           name: localtime
139           readOnly: true
140         - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
141           name: snapshots
142         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
143           name: migration
144           subPath: janusgraph-migration-real.properties
145         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
146           name: migration
147           subPath: janusgraph-migration-cached.properties
148         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
149           name: properties
150           subPath: aaiconfig.properties
151         - mountPath: /opt/aai/logroot/AAI-RES/
152           name: logs
153         - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
154           name: config
155           subPath: logback.xml
156         - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
157           name: config
158           subPath: localhost-access-logback.xml
159         - mountPath: /opt/app/aai-graphadmin/resources/application.properties
160           name: properties
161           subPath: application.properties
162         resources: {{ include "common.resources" . | nindent 10 }}
163       {{- if .Values.nodeSelector }}
164       nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
165       {{- end }}
166       {{- if .Values.affinity }}
167       affinity: {{ toYaml .Values.affinity | nindent 8 }}
168       {{- end }}
169       volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
170       - name: localtime
171         hostPath:
172           path: /etc/localtime
173       - name: logs
174         emptyDir: {}
175       - name: config
176         configMap:
177           name: {{ include "common.fullname" . }}
178       - name: properties
179       {{- if .Values.global.aafEnabled }}
180         emptyDir:
181           medium: Memory
182       - name: properties-input
183       {{- end }}
184         configMap:
185           name: {{ include "common.fullname" . }}-properties
186       - name: migration
187         configMap:
188           name: {{ include "common.fullname" . }}-migration
189       - name: snapshots
190         persistentVolumeClaim:
191           claimName: {{ include "common.fullname" . }}-migration
192       restartPolicy: Never
193       imagePullSecrets:
194       - name: "{{ include "common.namespace" . }}-docker-registry-key"
195 {{ end }}