blob: e2fe395b957c84ba9e2daa56ea783cf44a97a75d [file] [log] [blame]
vagrant1a3a3552018-03-10 23:56:32 +00001# Copyright © 2017-2018 AT&T
toshrajbhardwajf4fc1c62018-08-06 07:35:14 +00002# Modifications Copyright © 2018 Amdocs, Bell Canada
vagrant1a3a3552018-03-10 23:56:32 +00003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040016{{ if .Values.global.jobs.updateQueryData.enabled }}
17
vagrant1a3a3552018-03-10 23:56:32 +000018apiVersion: batch/v1
19kind: Job
20metadata:
21 name: {{ include "common.fullname" . }}-update-query-data
22 namespace: {{ include "common.namespace" . }}
23 labels:
24 app: {{ include "common.name" . }}
25 chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
26 release: {{ .Release.Name }}
27 heritage: {{ .Release.Service }}
28spec:
29 template:
30 metadata:
31 labels:
32 app: {{ include "common.name" . }}-job
33 release: {{ .Release.Name }}
34 name: {{ include "common.name" . }}
35 spec:
36 initContainers:
37 - command:
38 - /root/ready.py
39 args:
40 - --container-name
41 - aai
Kajur, Harish (vk250x)829a7b32018-11-07 12:51:35 -050042 {{ if eq .Values.global.aafEnabled true }}
43 - --container-name
44 - aaf-locate
45 {{ end }}
vagrant1a3a3552018-03-10 23:56:32 +000046 env:
47 - name: NAMESPACE
48 valueFrom:
49 fieldRef:
50 apiVersion: v1
51 fieldPath: metadata.namespace
52 image: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}"
53 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
54 name: {{ include "common.name" . }}-readiness
55 containers:
56 - name: {{ include "common.name" . }}-job
BorislavGdf11cd52018-05-06 12:55:20 +000057 image: "{{ include "common.repository" . }}/{{ .Values.image }}"
vagrant1a3a3552018-03-10 23:56:32 +000058 imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }}
59 command:
60 - bash
61 - "-c"
62 - |
63 set -x
64 mkdir -p /opt/aai/logroot/AAI-GQ/misc
Kajur, Harish (vk250x)9a074502018-10-08 20:45:03 -040065 until nc -w10 -z -v aai.{{.Release.Namespace}} 8443; do echo "Retrying to reach aai on port 8443"; done;
vagrant1a3a3552018-03-10 23:56:32 +000066 bash -x /opt/app/aai-traversal/docker-entrypoint.sh install/updateQueryData.sh
67 env:
68 - name: LOCAL_USER_ID
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040069 value: {{ .Values.global.config.userId | quote }}
vagrant1a3a3552018-03-10 23:56:32 +000070 - name: LOCAL_GROUP_ID
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040071 value: {{ .Values.global.config.groupId | quote }}
vagrant1a3a3552018-03-10 23:56:32 +000072 volumeMounts:
73 - mountPath: /etc/localtime
74 name: localtime
75 readOnly: true
76 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-realtime.properties
77 name: {{ include "common.fullname" . }}-db-real-conf
78 subPath: janusgraph-realtime.properties
79 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/janusgraph-cached.properties
80 name: {{ include "common.fullname" . }}-db-cached-conf
81 subPath: janusgraph-cached.properties
82 - mountPath: /opt/app/aai-traversal/resources/etc/appprops/aaiconfig.properties
83 name: {{ include "common.fullname" . }}-aaiconfig-conf
84 subPath: aaiconfig.properties
Kajur, Harish (vk250x)791688e2018-10-17 18:25:28 -040085 - mountPath: /opt/aai/logroot/AAI-GQ/
vagrant1a3a3552018-03-10 23:56:32 +000086 name: {{ include "common.fullname" . }}-logs
87 - mountPath: /opt/app/aai-traversal/resources/logback.xml
88 name: {{ include "common.fullname" . }}-log-conf
89 subPath: logback.xml
90 - mountPath: /opt/app/aai-traversal/resources/localhost-access-logback.xml
91 name: {{ include "common.fullname" . }}-localhost-access-log-conf
92 subPath: localhost-access-logback.xml
93 - mountPath: /opt/app/aai-traversal/resources/application.properties
94 name: {{ include "common.fullname" . }}-springapp-conf
95 subPath: application.properties
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -040096 {{ $global := . }}
97 {{ range $job := .Values.global.config.auth.files }}
98 - mountPath: /opt/app/aai-traversal/resources/etc/auth/{{ . }}
99 name: {{ include "common.fullname" $global }}-auth-truststore-sec
100 subPath: {{ . }}
101 {{ end }}
vagrant1a3a3552018-03-10 23:56:32 +0000102 # disable liveness probe when breakpoints set in debugger
103 # so K8s doesn't restart unresponsive container
vagrant1a3a3552018-03-10 23:56:32 +0000104 volumes:
105 - name: localtime
106 hostPath:
107 path: /etc/localtime
108 - name: filebeat-conf
109 configMap:
110 name: aai-filebeat
111 - name: {{ include "common.fullname" . }}-logs
112 hostPath:
BorislavG56857c42018-05-03 14:29:51 +0000113 path: {{ .Values.persistence.mountPath }}/{{ .Release.Name }}/{{ .Values.persistence.mountSubPath }}-update-query
vagrant1a3a3552018-03-10 23:56:32 +0000114 - name: {{ include "common.fullname" . }}-filebeat
115 emptyDir: {}
116 - name: {{ include "common.fullname" . }}-log-conf
117 configMap:
118 name: {{ include "common.fullname" . }}-log
119 - name: {{ include "common.fullname" . }}-localhost-access-log-conf
120 configMap:
121 name: {{ include "common.fullname" . }}-localhost-access-log-configmap
122 - name: {{ include "common.fullname" . }}-db-real-conf
123 configMap:
124 name: {{ include "common.fullname" . }}-db-real-configmap
125 - name: {{ include "common.fullname" . }}-db-cached-conf
126 configMap:
127 name: {{ include "common.fullname" . }}-db-cached-configmap
128 - name: {{ include "common.fullname" . }}-aaiconfig-conf
129 configMap:
130 name: {{ include "common.fullname" . }}-aaiconfig-configmap
131 - name: {{ include "common.fullname" . }}-springapp-conf
132 configMap:
133 name: {{ include "common.fullname" . }}-springapp-configmap
134 - name: {{ include "common.fullname" . }}-realm-conf
135 configMap:
136 name: {{ include "common.fullname" . }}-realm-configmap
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -0400137 - name: {{ include "common.fullname" . }}-auth-truststore-sec
vagrant1a3a3552018-03-10 23:56:32 +0000138 secret:
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -0400139 secretName: aai-auth-truststore-secret
140 items:
141 {{ range $job := .Values.global.config.auth.files }}
142 - key: {{ . }}
143 path: {{ . }}
144 {{ end }}
vagrant1a3a3552018-03-10 23:56:32 +0000145 restartPolicy: OnFailure
146 imagePullSecrets:
147 - name: "{{ include "common.namespace" . }}-docker-registry-key"
Kajur, Harish (vk250x)00107b52018-09-06 14:44:40 -0400148{{ end }}