blob: 0cdce113955a69d0e7b6757fdbea8fb87f484a08 [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 Desbureaux5b651322020-12-07 15:34:15 +01008# Copyright (c) 2020 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:
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
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010073 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010074 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
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010079 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010080 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
81 command:
82 - /bin/bash
osk1146127fd7d82021-06-18 00:51:17 +020083 - -c
84 - |
85 bash docker-entrypoint.sh dataSnapshot.sh ;
86 {{- include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010087 env:
88 - name: LOCAL_USER_ID
89 value: {{ .Values.global.config.userId | quote }}
90 - name: LOCAL_GROUP_ID
91 value: {{ .Values.global.config.groupId | quote }}
92 volumeMounts:
93 - mountPath: /etc/localtime
94 name: localtime
95 readOnly: true
96 - mountPath: /opt/app/aai-graphadmin/logs/data/dataSnapshots
97 name: {{ include "common.fullname" . }}-snapshots
98 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-realtime.properties
99 name: {{ include "common.fullname" . }}-migration
100 subPath: janusgraph-migration-real.properties
101 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
102 name: {{ include "common.fullname" . }}-migration
103 subPath: janusgraph-migration-cached.properties
104 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
105 name: {{ include "common.fullname" . }}-config
106 subPath: aaiconfig.properties
107 - mountPath: /opt/aai/logroot/AAI-RES/
108 name: {{ include "common.fullname" . }}-logs
109 - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
110 name: {{ include "common.fullname" . }}-config
111 subPath: logback.xml
112 - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
113 name: {{ include "common.fullname" . }}-config
114 subPath: localhost-access-logback.xml
115 - mountPath: /opt/app/aai-graphadmin/resources/application.properties
116 name: {{ include "common.fullname" . }}-config
117 subPath: application.properties
118 resources:
119{{ include "common.resources" . | indent 10 }}
120 {{- if .Values.nodeSelector }}
121 nodeSelector:
122{{ toYaml .Values.nodeSelector | indent 8 }}
123 {{- end -}}
124 {{- if .Values.affinity }}
125 affinity:
126{{ toYaml .Values.affinity | indent 8 }}
127 {{- end }}
128 volumes:
129 - name: localtime
130 hostPath:
131 path: /etc/localtime
132 - name: {{ include "common.fullname" . }}-logs
133 emptyDir: {}
134 - name: {{ include "common.fullname" . }}-config
135 configMap:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100136 name: {{ include "common.fullname" . }}-configmap
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100137 - name: {{ include "common.fullname" . }}-migration
138 configMap:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100139 name: {{ include "common.fullname" . }}-migration-configmap
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100140 - name: {{ include "common.fullname" . }}-snapshots
141 persistentVolumeClaim:
142 claimName: {{ include "common.fullname" . }}-migration
143 restartPolicy: Never
144 imagePullSecrets:
145 - name: "{{ include "common.namespace" . }}-docker-registry-key"
146{{ end }}