We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81089db commit eae23b5Copy full SHA for eae23b5
.github/scripts/deploy_busola.sh
@@ -38,9 +38,6 @@ kubectl wait --for=jsonpath='{.status.loadBalancer.ingress}' ingress/busola
38
IP=$(kubectl get ingress busola -ojson | jq .status.loadBalancer.ingress[].ip | tr -d '/"')
39
echo "IP address: ${IP}"
40
41
-# check if busola is available with curl
42
-curl --fail "${IP}"
43
-
44
if [[ ! -z "${GITHUB_OUTPUT:-}" ]]; then
45
echo "IP=${IP}" >> "${GITHUB_OUTPUT}"
46
echo "IP saved"
resources/base/busola/deployment.yaml
@@ -34,6 +34,10 @@ spec:
34
memory: 21Mi
35
ports:
36
- containerPort: 3001
37
+ startupProbe:
+ httpGet:
+ port: 3001
+ path: /
volumes:
- name: config
configMap:
0 commit comments