blob: 42f0f47bb0f30eaa9cd2a29a92e4843b7a80cac7 [file] [log] [blame]
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +01001{{/*
Sylvain Desbureaux70070412020-11-09 21:58:48 +01002# Copyright (c) 2017-2018 AT&T
3# Modifications Copyright (c) 2018 Amdocs, Bell Canada
Sylvain Desbureaux5b651322020-12-07 15:34:15 +01004# Modifications Copyright (c) 2020 Nokia, Orange
Sylvain Desbureaux70070412020-11-09 21:58:48 +01005#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
Sylvain Desbureaux47eb4d22020-12-10 12:15:27 +010017*/}}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010018
19{{ if .Values.global.jobs.updateQueryData.enabled }}
20
21apiVersion: batch/v1
22kind: Job
23metadata:
24 name: {{ include "common.fullname" . }}-update-query-data
25 namespace: {{ include "common.namespace" . }}
26 labels:
27 app: {{ include "common.name" . }}
28 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
29 release: {{ include "common.release" . }}
30 heritage: {{ .Release.Service }}
31{{ if .Values.global.jobs.migration.enabled }}
32 annotations:
33 "helm.sh/hook": post-upgrade,post-rollback,post-install
34 "helm.sh/hook-weight": "2"
35 "helm.sh/hook-delete-policy": before-hook-creation
36{{ end }}
37spec:
38 template:
39 metadata:
40 labels:
41 app: {{ include "common.name" . }}-job
42 release: {{ include "common.release" . }}
43 name: {{ include "common.name" . }}
44 spec:
45 initContainers:
46 - command:
47 - /app/ready.py
48 args:
49 - --container-name
50 - aai
51 {{ if eq .Values.global.aafEnabled true }}
52 - --container-name
53 - aaf-locate
54 {{ end }}
55 env:
56 - name: NAMESPACE
57 valueFrom:
58 fieldRef:
59 apiVersion: v1
60 fieldPath: metadata.namespace
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010061 image: {{ include "repositoryGenerator.image.readiness" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010062 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
63 name: {{ include "common.name" . }}-readiness
64 containers:
65 - name: {{ include "common.name" . }}-job
Sylvain Desbureaux5b651322020-12-07 15:34:15 +010066 image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010067 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
68 command:
69 - bash
70 - "-c"
71 - |
osk1146127fd7d82021-06-18 00:51:17 +020072 set -x
73 if [ ! -d /opt/aai/logroot/AAI-GQ/misc ]; then mkdir -p /opt/aai/logroot/AAI-GQ/misc; fi
74 {{- if (include "common.needTLS" .) }}
75 until nc -w10 -z -v aai.{{.Release.Namespace}} 8443; do echo "Retrying to reach aai on port 8443"; done;
76 bash -x /opt/app/aai-traversal/docker-entrypoint.sh install/updateQueryData.sh
77 {{- else }}
78 until nc -w10 -z -v aai.{{.Release.Namespace}} 80; do echo "Retrying to reach aai on port 80"; done;
79 bash -x /opt/app/aai-traversal/docker-entrypoint.sh install/updateQueryData.sh ;
80 {{- include "common.serviceMesh.killSidecar" . | indent 11 | trim }}
81 {{- end }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +010082 env:
83 - name: LOCAL_USER_ID
84 value: {{ .Values.global.config.userId | quote }}
85 - name: LOCAL_GROUP_ID
86 value: {{ .Values.global.config.groupId | quote }}
87 resources:
88{{ include "common.resources" . }}
89 volumeMounts:
90 - mountPath: /etc/localtime
91 name: localtime
92 readOnly: true
93 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-realtime.properties
94 name: {{ include "common.fullname" . }}-config
95 subPath: janusgraph-realtime.properties
96 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-cached.properties
97 name: {{ include "common.fullname" . }}-config
98 subPath: janusgraph-cached.properties
99 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/aaiconfig.properties
100 name: {{ include "common.fullname" . }}-config
101 subPath: aaiconfig.properties
102 - mountPath: /opt/aai/logroot/AAI-GQ/
103 name: {{ include "common.fullname" . }}-logs
104 - mountPath: /opt/aai/logroot/AAI-GQ/misc
105 name: {{ include "common.fullname" . }}-logs-misc
106 - mountPath: /opt/app/aai-traversal/resources/logback.xml
107 name: {{ include "common.fullname" . }}-config
108 subPath: logback.xml
109 - mountPath: /opt/app/aai-traversal/resources/localhost-access-logback.xml
110 name: {{ include "common.fullname" . }}-config
111 subPath: localhost-access-logback.xml
112 - mountPath: /opt/app/aai-traversal/resources/application.properties
113 name: {{ include "common.fullname" . }}-config
114 subPath: application.properties
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100115 # disable liveness probe when breakpoints set in debugger
116 # so K8s doesn't restart unresponsive container
117 volumes:
118 - name: localtime
119 hostPath:
120 path: /etc/localtime
121 - name: filebeat-conf
122 configMap:
123 name: aai-filebeat
124 - name: {{ include "common.fullname" . }}-logs
125 emptyDir: {}
126 - name: {{ include "common.fullname" . }}-logs-misc
127 emptyDir: {}
128 - name: {{ include "common.fullname" . }}-filebeat
129 emptyDir: {}
130 - name: {{ include "common.fullname" . }}-config
131 configMap:
Sylvain Desbureauxa41dfc02021-02-15 10:14:22 +0100132 name: {{ include "common.fullname" . }}
Sylvain Desbureaux70070412020-11-09 21:58:48 +0100133 restartPolicy: OnFailure
134 imagePullSecrets:
135 - name: "{{ include "common.namespace" . }}-docker-registry-key"
136{{ end }}