diff --git a/.github/workflows/debug-dind.yml b/.github/workflows/debug-dind.yml index 9693cbff..59f4ecbc 100644 --- a/.github/workflows/debug-dind.yml +++ b/.github/workflows/debug-dind.yml @@ -83,10 +83,17 @@ jobs: # # Clean up # docker stop test-server + # @pauline, everything above is alternative tests that show the same behavior (bug) + # More or less when doing DIND, i cannot get the container to be reachable from the runner + # test-pytorch-xla-tpu-tgi-integration.yml is my full workflow when i first notice this behavior + # test-pytorch-xla-tpu-tgi-integration.yml starts a TGI webserver and then do requests to it to check that it's working, this is my end goal + # this is a minimal test to see if i can get the container to be reachable from the runner and it does not work + # i'm trying to find out why the container is not reachable from the runner, do you have any idea why? + - name: Test HTTP request run: | # Run the whoami container with environment variables - docker run ${{ vars.V5_LITEPOD_8_ENV}} -d --name network-test -p 5001:80 traefik/whoami + docker run ${{ vars.V5_LITEPOD_8_ENV}} --ipc host --privileged -d --name network-test -p 5001:80 traefik/whoami # Wait for container to be ready sleep 5