File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1616 labels :
1717 {{- include "webui.selectorLabels" . | nindent 8 }}
1818 spec :
19+ initContainers :
20+ - name : wait-for-db
21+ image : " postgres:latest"
22+ command : ["sh", "-c", "until pg_isready -h db -p 5432; do echo waiting for database; sleep 2; done;"]
1923 containers :
2024 # Future enhancement option: a container with rsync for setup with cache service
2125 - name : {{ include "webui.fullname" . }}-scheduler
5660 readinessProbe :
5761 exec :
5862 command : ["curl", "-f", "http://localhost:9527"]
63+ # Give the app 15 seconds to start before probing
64+ initialDelaySeconds : 15
65+ # Give the probe 5 seconds to respond
66+ timeoutSeconds : 5
5967 - name : {{ include "webui.fullname" . }}-gru
6068 image : " {{ .Values.image.name }}:{{ .Values.image.tag }}"
6169 imagePullPolicy : {{ .Values.image.pullPolicy }}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ kind: Ingress
33metadata :
44 name : {{ include "webui.fullname" . }}-ingress
55spec :
6- ingressClassName : traefik
6+ ingressClassName : {{ .Values.ingress.className }}
77 rules :
88 - host : {{ .Values.baseUrl }}
99 http :
Original file line number Diff line number Diff line change 11enabled : true
2- baseUrl : openqa.host
2+ baseUrl : openqa.host.org
33useHttps : false
44key : 1234567890ABCDEF
55secret : 1234567890ABCDEF
66image :
77 name : registry.opensuse.org/devel/openqa/containers15.6/openqa_webui
88 pullPolicy : Always
99 tag : " latest"
10+ ingress :
11+ enabled : true
12+ className : " nginx"
1013postgresql :
1114 enabled : true
1215 fullnameOverride : db
Original file line number Diff line number Diff line change 44 pullPolicy : Always
55 tag : " latest"
66openqa :
7- host : openqa.host
7+ host : openqa.host.org
88 key : 1234567890ABCDEF
99 secret : 1234567890ABCDEF
1010cacheService : false
You can’t perform that action at this time.
0 commit comments