Assume http instead of https
All checks were successful
changelog / changelog (push) Successful in 7s
check-and-test / check-and-test (push) Successful in 24s

This commit is contained in:
2025-07-23 15:40:21 +02:00
parent daf69e1ad7
commit c1ff110797
2 changed files with 11 additions and 11 deletions

View File

@@ -64,7 +64,7 @@ tests:
template: templates/job.yaml
set:
enabled: true
giteaRootURL: "https://git.example.com:8443"
giteaRootURL: "http://git.example.com:80"
provisioning:
enabled: true
persistence:
@@ -84,6 +84,6 @@ tests:
path: spec.template.spec.initContainers[0].command[2]
value: |
echo 'Waiting for gitea...'
while ! wget -qO- https://git.example.com:8443 > /dev/null; do
while ! wget -qO- http://git.example.com:80 > /dev/null; do
sleep 2
done