blob: 79144680b4a34357ffe98f0bc4df93fffbf4f4cc [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 and ( not .Values.global.jobs.migration.enabled ) ( .Values.global.jobs.createSchema.enabled ) }}
37apiVersion: batch/v1
38kind: Job
39metadata:
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 }}
47spec:
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
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010074 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010075 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
76 name: {{ include "common.name" . }}-readiness
77 containers:
78 - name: {{ include "common.name" . }}-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
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:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100141 name: {{ include "common.fullname" . }}-configmap
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100142 - name: {{ include "common.fullname" . }}-auth-truststore-sec
143 secret:
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100144 secretName: aai-common-truststore
145 items:
146 {{ range $job := .Values.global.config.auth.files }}
147 - key: {{ . }}
148 path: {{ . }}
149 {{ end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100150 restartPolicy: Never
151 imagePullSecrets:
152 - name: "{{ include "common.namespace" . }}-docker-registry-key"
153{{ end }}