Skip to content

Commit

Permalink
Use v0.3.0 of Orbit
Browse files Browse the repository at this point in the history
  • Loading branch information
myurasov committed Apr 26, 2024
1 parent 5e03ba0 commit 75524a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ WORKDIR /app

ENTRYPOINT [ "/bin/sh", "-c" ]

ENV VERSION="v2.2.1"
ENV VERSION="v2.2.2"
8 changes: 4 additions & 4 deletions src/python/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

# gcp driver
# @see https://cloud.google.com/compute/docs/gpus/grid-drivers-table
c[
"gcp_driver_url"
] = "https://storage.googleapis.com/nvidia-drivers-us-public/GRID/vGPU16.2/NVIDIA-Linux-x86_64-535.129.03-grid.run"
c["gcp_driver_url"] = (
"https://storage.googleapis.com/nvidia-drivers-us-public/GRID/vGPU16.2/NVIDIA-Linux-x86_64-535.129.03-grid.run"
)

# aws/alicloud driver
c["generic_driver_apt_package"] = "nvidia-driver-535-server"
Expand Down Expand Up @@ -83,4 +83,4 @@
c["default_oige_git_checkpoint"] = "main"

# --orbit
c["default_orbit_git_checkpoint"] = "devel"
c["default_orbit_git_checkpoint"] = "v0.3.0"
2 changes: 1 addition & 1 deletion src/python/deploy_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def __init__(self, *args, **kwargs):
click.core.Option(
("--orbit",),
help=help,
default="no",
default=config["default_orbit_git_checkpoint"],
show_default=True,
prompt=colorize_prompt("* " + help),
callback=DeployCommand.orbit_callback,
Expand Down

0 comments on commit 75524a5

Please sign in to comment.