[AAI] Make AAI helm3 compatible
[oom.git] / kubernetes / aai / components / aai-graphadmin / templates / job-create-db.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 and ( not .Values.global.jobs.migration.enabled ) ( .Values.global.jobs.createSchema.enabled ) }}
37 apiVersion: batch/v1
38 kind: Job
39 metadata:
40   name: {{ include "common.fullname" . }}-create-db-schema
41   namespace: {{ include "common.namespace" . }}
42   labels:
43     app: {{ include "common.name" . }}-job
44     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
45     release: {{ include "common.release" . }}
46     heritage: {{ .Release.Service }}
47 spec:
48   backoffLimit: 20
49   template:
50     metadata:
51       labels:
52         app: {{ include "common.name" . }}-job
53         release: {{ include "common.release" . }}
54       name: {{ include "common.name" . }}
55     spec:
56       initContainers:
57       - command:
58         - /app/ready.py
59         args:
60         - --container-name
61         {{- if .Values.global.cassandra.localCluster }}
62         - aai-cassandra
63         {{- else }}
64         - cassandra
65         {{- end }}
66         - --container-name
67         - aai-schema-service
68         env:
69         - name: NAMESPACE
70           valueFrom:
71             fieldRef:
72               apiVersion: v1
73               fieldPath: metadata.namespace
74         image: {{ include "repositoryGenerator.image.readiness" . }}
75         imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
76         name: {{ include "common.name" . }}-readiness
77       containers:
78       - name: {{ include "common.name" . }}-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         - createDBSchema.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/resources/etc/appprops/janusgraph-realtime.properties
95           name: {{ include "common.fullname" . }}-config
96           subPath: janusgraph-realtime.properties
97         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
98           name: {{ include "common.fullname" . }}-config
99           subPath: janusgraph-cached.properties
100         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
101           name: {{ include "common.fullname" . }}-config
102           subPath: aaiconfig.properties
103         - mountPath: /opt/aai/logroot/AAI-GA
104           name: {{ include "common.fullname" . }}-logs
105         - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
106           name: {{ include "common.fullname" . }}-config
107           subPath: logback.xml
108         - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
109           name: {{ include "common.fullname" . }}-config
110           subPath: localhost-access-logback.xml
111         - mountPath: /opt/app/aai-graphadmin/resources/application.properties
112           name: {{ include "common.fullname" . }}-config
113           subPath: application.properties
114           {{ $global := . }}
115           {{ range $job := .Values.global.config.auth.files }}
116         - mountPath: /opt/app/aai-graphadmin/resources/etc/auth/{{ . }}
117           name: {{ include "common.fullname" $global }}-auth-truststore-sec
118           subPath: {{ . }}
119           {{ end }}
120         resources:
121 {{ include "common.resources" . }}
122       {{- if .Values.nodeSelector }}
123       nodeSelector:
124 {{ toYaml .Values.nodeSelector | indent 8 }}
125       {{- end -}}
126       {{- if .Values.affinity }}
127       affinity:
128 {{ toYaml .Values.affinity | indent 8 }}
129       {{- end }}
130       volumes:
131       - name: localtime
132         hostPath:
133           path: /etc/localtime
134       - name: filebeat-conf
135         configMap:
136           name: aai-filebeat
137       - name: {{ include "common.fullname" . }}-logs
138         emptyDir: {}
139       - name: {{ include "common.fullname" . }}-config
140         configMap:
141           name: {{ include "common.fullname" . }}-configmap
142       - name: {{ include "common.fullname" . }}-auth-truststore-sec
143         secret:
144           secretName: aai-common-truststore
145           items:
146             {{ range $job := .Values.global.config.auth.files }}
147             - key: {{ . }}
148               path: {{ . }}
149             {{ end }}
150       restartPolicy: Never
151       imagePullSecrets:
152       - name: "{{ include "common.namespace" . }}-docker-registry-key"
153 {{ end }}