blob: 62e27b63216e7d5dd58f85b92102878b8ac8d5ad [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 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:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +010056 initContainers: {{ include "common.certInitializer.initContainer" . | nindent 6 }}
57 {{- if .Values.global.aafEnabled }}
58 - command:
59 - sh
60 args:
61 - -c
62 - |
63 echo "*** retrieve Truststore and Keystore password"
64 export $(cat {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop | xargs -0)
65 echo "*** obfuscate them "
66 export KEYSTORE_PASSWORD=`java -cp /usr/local/jetty/lib/jetty-util-9.4.44.v20210927.jar org.eclipse.jetty.util.security.Password ${KEYSTORE_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
67 export KEYSTORE_JKS_PASSWORD=`java -cp /usr/local/jetty/lib/jetty-util-9.4.44.v20210927.jar org.eclipse.jetty.util.security.Password ${KEYSTORE_JKS_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
68 export TRUSTSTORE_PASSWORD=`java -cp /usr/local/jetty/lib/jetty-util-9.4.44.v20210927.jar org.eclipse.jetty.util.security.Password ${TRUSTSTORE_PLAIN_PASSWORD} 2>&1 | grep "OBF:"`
69 echo "KEYSTORE_PASSWORD=${KEYSTORE_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
70 echo "KEYSTORE_JKS_PASSWORD=${KEYSTORE_JKS_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
71 echo "TRUSTSTORE_PASSWORD=${TRUSTSTORE_PASSWORD}" >> {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop
72 image: {{ include "repositoryGenerator.image.jetty" . }}
73 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
74 name: {{ include "common.name" . }}-obfuscate
75 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
76 securityContext:
77 runAsUser: {{ .Values.securityContext.user_id }}
78 - command:
79 - sh
80 args:
81 - -c
82 - |
83 echo "*** Set obfuscated Truststore and Keystore password into configuration file"
84 export $(cat {{ .Values.certInitializer.appMountPath }}/local/mycreds.prop | xargs -0)
85 cd /config-input
86 for PFILE in `ls -1`
87 do
88 envsubst <${PFILE} >/config/${PFILE}
89 done
90 volumeMounts: {{ include "common.certInitializer.volumeMount" . | nindent 8 }}
91 - mountPath: /config-input
92 name: properties-input
93 - mountPath: /config
94 name: properties
95 image: {{ include "repositoryGenerator.image.envsubst" . }}
96 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
97 name: {{ include "common.name" . }}-update-config
98 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010099 - command:
100 - /app/ready.py
101 args:
102 - --container-name
103 {{- if .Values.global.cassandra.localCluster }}
104 - aai-cassandra
105 {{- else }}
106 - cassandra
107 {{- end }}
108 - --container-name
109 - aai-schema-service
110 env:
111 - name: NAMESPACE
112 valueFrom:
113 fieldRef:
114 apiVersion: v1
115 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +0100116 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100117 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
118 name: {{ include "common.name" . }}-readiness
119 containers:
120 - name: {{ include "common.name" . }}-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 createDBSchema.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/resources/etc/appprops/janusgraph-realtime.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100140 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100141 subPath: janusgraph-realtime.properties
142 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/janusgraph-cached.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100143 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100144 subPath: janusgraph-cached.properties
145 - mountPath: /opt/app/aai-graphadmin/resources/etc/appprops/aaiconfig.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100146 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100147 subPath: aaiconfig.properties
148 - mountPath: /opt/aai/logroot/AAI-GA
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100149 name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100150 - mountPath: /opt/app/aai-graphadmin/resources/logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100151 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100152 subPath: logback.xml
153 - mountPath: /opt/app/aai-graphadmin/resources/localhost-access-logback.xml
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100154 name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100155 subPath: localhost-access-logback.xml
156 - mountPath: /opt/app/aai-graphadmin/resources/application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100157 name: properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100158 subPath: application.properties
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100159 resources: {{ include "common.resources" . | nindent 10 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100160 {{- if .Values.nodeSelector }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100161 nodeSelector: {{ toYaml .Values.nodeSelector | nindent 8 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100162 {{- end }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100163 {{- if .Values.affinity }}
164 affinity: {{ toYaml .Values.affinity | nindent 8 }}
165 {{- end }}
166 volumes: {{ include "common.certInitializer.volumes" . | nindent 6 }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100167 - name: localtime
168 hostPath:
169 path: /etc/localtime
Maciej Wereskid523d122021-09-21 11:22:13 +0200170 {{ include "common.log.volumes" (dict "dot" . "configMapNamePrefix" (tpl .Values.logConfigMapNamePrefix .)) | nindent 6 }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100171 - name: logs
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100172 emptyDir: {}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100173 - name: config
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100174 configMap:
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100175 name: {{ include "common.fullname" . }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100176 - name: properties
othman touijer51176672021-12-01 16:21:18 +0100177 {{- if .Values.global.aafEnabled }}
Sylvain Desbureauxc57b58d2021-02-23 18:07:34 +0100178 emptyDir:
179 medium: Memory
othman touijer51176672021-12-01 16:21:18 +0100180 - name: properties-input
181 {{- end }}
182 configMap:
183 name: {{ include "common.fullname" . }}-properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100184 restartPolicy: Never
185 imagePullSecrets:
osk1146127fd7d82021-06-18 00:51:17 +0200186 - name: {{ include "common.namespace" . }}-docker-registry-key
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100187{{ end }}