blob: a6c414517b57062af42a58cfdfb4941126879d21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
{{- define "aai.waitForSchemaCreation" -}}
- name: wait-for-schema-creation
image: "{{ include "repositoryGenerator.image.curl" . }}"
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c"]
args:
- |
URL="{{ required "URL is required" (.Values.schemaInitCheckURL | default "http://aai-graphadmin:8449/isSchemaInitialized") }}"
AUTH="{{ printf "%s:%s" (index .Values.global.config.basic.auth.users 0).username (index .Values.global.config.basic.auth.users 0).password }}"
while true; do
RESPONSE=$(curl -u $AUTH -s $URL)
if [ "$RESPONSE" = "true" ]; then
echo "Request successful. Schema is initialized."
exit 0
else
echo "Request unsuccessful. Schema is not yet initialized. Retrying in 3 seconds..."
sleep 3
fi
done
{{ include "common.containerSecurityContext" . | indent 2 | trim }}
{{- end -}}
{{- define "aai.waitForSchemaService" -}}
- name: wait-for-schema-service
image: "{{ include "repositoryGenerator.image.curl" . }}"
imagePullPolicy: IfNotPresent
command: ["/bin/sh", "-c"]
args:
- |
URL="{{ required "URL is required" (.Values.schemaInitCheckURL | default "http://aai-schema-service:8452/aai/schema-service/util/echo") }}"
AUTH="{{ printf "%s:%s" (index .Values.global.config.basic.auth.users 0).username (index .Values.global.config.basic.auth.users 0).password }}"
while true; do
if curl --fail --header 'X-FromAppId: graphadmin' --header 'X-TransactionId: someTransaction' -u $AUTH -s $URL; then
echo "Request successful. Schema-service is available"
exit 0
else
echo "Request unsuccessful. Schema-service is not available yet. Retrying in 3 seconds..."
sleep 3
fi
done
{{ include "common.containerSecurityContext" . | indent 2 | trim }}
{{- end -}}
|