[AAI] Service Mesh compatibility
[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         - -c
84         - |
85            bash docker-entrypoint.sh createDBSchema.sh ;
86            {{- include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
87         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/resources/etc/appprops/janusgraph-realtime.properties
97           name: {{ include "common.fullname" . }}-config
98           subPath: janusgraph-realtime.properties
99         - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
100           name: {{ include "common.fullname" . }}-config
101           subPath: janusgraph-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-GA
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           {{ $global := . }}
117           {{ range $job := .Values.global.config.auth.files }}
118         - mountPath: /opt/app/aai-graphadmin/resources/etc/auth/{{ . }}
119           name: {{ include "common.fullname" $global }}-auth-truststore-sec
120           subPath: {{ . }}
121           {{ end }}
122         resources:
123 {{ include "common.resources" . }}
124       {{- if .Values.nodeSelector }}
125       nodeSelector:
126 {{ toYaml .Values.nodeSelector | indent 8 }}
127       {{- end -}}
128       {{- if .Values.affinity }}
129       affinity:
130 {{ toYaml .Values.affinity | indent 8 }}
131       {{- end }}
132       volumes:
133       - name: localtime
134         hostPath:
135           path: /etc/localtime
136       - name: filebeat-conf
137         configMap:
138           name: aai-filebeat
139       - name: {{ include "common.fullname" . }}-logs
140         emptyDir: {}
141       - name: {{ include "common.fullname" . }}-config
142         configMap:
143           name: {{ include "common.fullname" . }}-configmap
144       - name: {{ include "common.fullname" . }}-auth-truststore-sec
145         secret:
146           secretName: aai-common-truststore
147           items:
148             {{ range $job := .Values.global.config.auth.files }}
149             - key: {{ . }}
150               path: {{ . }}
151             {{ end }}
152       restartPolicy: Never
153       imagePullSecrets:
154       - name: {{ include "common.namespace" . }}-docker-registry-key
155 {{ end }}