You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resources:
# you could change this section to any resources you want, like a CPU VM# accelerators: V100:1ports: 8080cloud: azureregion: australiaeast# tabby base dirworkdir: .setup: | # On some cloud providers, docker-compose is not installed by default. sudo curl -sS -L https://github.com/docker/compose/releases/download/v2.17.2/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose sudo chmod a+x /usr/local/bin/docker-compose # On certain cloud providers (e.g lambda cloud), the default user is not added to docker group, so we need sudo here sudo docker-compose pull > /dev/null 2>&1 # Add current user to docker group, it won't take effect immediately as skypilot job is started by a long-running daemon. sudo usermod -aG docker $USERrun: | docker-compose down if nvidia-smi; then docker-compose -f docker-compose.yaml -f docker-compose.cuda.yaml up -d else docker-compose up -d fi while ! curl -s -X POST http://localhost:8080/v1/health; do echo "server not ready, waiting..." sleep 5 done echo "tabby server is ready, enjoy!"
notice that not every time will fail. (I tried 3 times and 1 of them failed)
Cannot reproduce using sky launch --cloud azure --ports 8080 for now.
TODO: Make a minimal YAML that could reproduce this bug.
The text was updated successfully, but these errors were encountered:
As mentioned in #2597, open ports in Azure will occasionally fail. To reproduce, enable
australiaeast
region in Azure andsky launch
following YAML:notice that not every time will fail. (I tried 3 times and 1 of them failed)
Cannot reproduce using
sky launch --cloud azure --ports 8080
for now.TODO: Make a minimal YAML that could reproduce this bug.
The text was updated successfully, but these errors were encountered: