Skip to content

Commit

Permalink
debug dind
Browse files Browse the repository at this point in the history
  • Loading branch information
baptistecolle committed Jan 6, 2025
1 parent de5f101 commit 0e55157
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/debug-dind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0e55157

Please sign in to comment.