blob: 07307134d855bc6fb94e2d5521911f30c32db8f5 [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.
Sylvain Desbureaux70070412020-11-09 21:58:48 +01009# ================================================================================
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
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010034*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010035
36{{- if .Values.global.jobs.migration.enabled }}
37---
38apiVersion: batch/v1
39kind: Job
40metadata:
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
52spec:
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:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010061 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 "
Sylvain Desbureauxedc1daa2022-02-15 15:27:44 +010071 export KEYSTORE_PASSWORD=`java -cp /usr/local/jetty/lib/jetty-util-9.4.45.v20220203.jar org.eclipse.jetty.util.security.Password ${KEYSTORE_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
72 export KEYSTORE_JKS_PASSWORD=`java -cp /usr/local/jetty/lib/jetty-util-9.4.45.v20220203.jar org.eclipse.jetty.util.security.Password ${KEYSTORE_JKS_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
73 export TRUSTSTORE_PASSWORD=`java -cp /usr/local/jetty/lib/jetty-util-9.4.45.v20220203.jar org.eclipse.jetty.util.security.Password ${TRUSTSTORE_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010074 echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
75 echo "KEYSTORE_JKS_PASSWORD=${KEYSTORE_JKS_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
76 echo "TRUSTSTORE_PASSWORD=${TRUSTSTORE_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
77 image: {{ include "repositoryGenerator.image.jetty" . }}
78 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
79 name: {{ include "common.name" . }}-obfuscate
80 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
81 securityContext:
82 runAsUser: {{ .Values.securityContext.user_id }}
83 - command:
84 - sh
85 args:
86 - -c
87 - |
88 echo "*** Set obfuscated Truststore and Keystore password into configuration file"
89 export $(cat {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop | xargs -0)
90 cd /config-input
91 for PFILE in `ls -1`
92 do
93 envsubst <${PFILE} >/config/${PFILE}
94 done
95 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
96 - mountPath: /config-input
97 name: properties-input
98 - mountPath: /config
99 name: properties
100 image: {{ include "repositoryGenerator.image.envsubst" . }}
101 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
102 name: {{ include "common.name" . }}-update-config
103 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100104 {{ if eq .Values.global.jobs.migration.remoteCassandra.enabled false }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100105 - command:
106 - /bin/bash
107 - -c
108 - /app/ready.py --container-name aai-cassandra --timeout 1 || /app/ready.py --container-name cassandra
109 env:
110 - name: NAMESPACE
111 valueFrom:
112 fieldRef:
113 apiVersion: v1
114 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100115 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100116 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
117 name: {{ include "common.name" . }}-db-backup-readiness
118 {{- end }}
119 containers:
120 - name: {{ include "common.name" . }}-db-backup-job
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100121 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100122 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
123 command:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100124 - sh
125 args:
osk1146127fd7d82021-06-18 00:51:17 +0200126 - -c
127 - |
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100128 bash docker-entrypoint.sh dataSnapshot.sh
othman touijer51176672021-12-01 16:21:18 +0100129 {{ include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100130 env:
131 - name: LOCAL_USER_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100132 value: {{ .Values.securityContext.user_id | quote }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100133 - name: LOCAL_GROUP_ID
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100134 value: {{ .Values.securityContext.group_id | quote }}
135 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100136 - mountPath: /etc/localtime
137 name: localtime
138 readOnly: true
139 - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100140 name: snapshots
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100141 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100142 name: migration
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100143 subPath: janusgraph-migration-real.properties
144 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100145 name: migration
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100146 subPath: janusgraph-migration-cached.properties
147 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100148 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100149 subPath: aaiconfig.properties
150 - mountPath: /opt/aai/logroot/AAI-RES/
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100151 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100152 - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100153 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100154 subPath: logback.xml
155 - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100156 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100157 subPath: localhost-access-logback.xml
158 - mountPath: /opt/app/aai-graphadmin/resources/application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100159 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100160 subPath: application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100161 resources: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100162 {{- if .Values.nodeSelector }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100163 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100164 {{- end }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100165 {{- if .Values.affinity }}
166 affinity: {{ toYaml .Values.affinity | nindent 8 }}
167 {{- end }}
168 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100169 - name: localtime
170 hostPath:
171 path: /etc/localtime
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100172 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100173 emptyDir: {}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100174 - name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100175 configMap:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100176 name: {{ include "common.fullname" . }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100177 - name: properties
othman touijer51176672021-12-01 16:21:18 +0100178 {{- if .Values.global.aafEnabled }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100179 emptyDir:
180 medium: Memory
othman touijer51176672021-12-01 16:21:18 +0100181 - name: properties-input
182 {{- end }}
183 configMap:
184 name: {{ include "common.fullname" . }}-properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100185 - name: migration
186 configMap:
187 name: {{ include "common.fullname" . }}-migration
188 - name: snapshots
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100189 persistentVolumeClaim:
190 claimName: {{ include "common.fullname" . }}-migration
191 restartPolicy: Never
192 imagePullSecrets:
193 - name: "{{ include "common.namespace" . }}-docker-registry-key"
194{{ end }}