Skip to content

Commit

Permalink
fix the rootless ingress port
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdotcosta committed Apr 17, 2024
1 parent 95f0f0d commit c916a95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ jobs:
- name: Check that ingress is available
run: |
set +e
CURL_EXIT_CODE=$(curl -o /dev/null -s -w "%{exitcode}\n" http://localhost)
CURL_EXIT_CODE=$(curl -o /dev/null -s -w "%{exitcode}\n" http://localhost:30080/)
if [ ! "${CURL_EXIT_CODE}" == '0' ]; then
echo "Exit code should have been 0 but it was ${CURL_EXIT_CODE}."
curl -o /dev/null -s -w "%{http_code}\n" http://localhost
curl -o /dev/null -s -w "%{exitcode}\n" http://localhost
curl -o /dev/null -s -w "%{http_code}\n" http://localhost:30080
curl -o /dev/null -s -w "%{exitcode}\n" http://localhost:30080
echo "Not going to fail as rootless containers still don't work with podman."
exit 0
else
Expand Down

0 comments on commit c916a95

Please sign in to comment.