Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use an image from the "official" ray-on-golem repository #67

Merged
merged 2 commits into from
Sep 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions examples/mandelbrot-golem-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ provider:
node_config:
# if not provided, image_tag will be autodetected based on currently used python and ray versions
# check available versions at https://registry.golem.network/explore/golem/ray-on-golem
# image_tag: "lucjandudek/ray-on-golem:py3.10.12-ray2.3.1"
image_tag: "golem/ray-on-golem:0.1.0-alpha.1"

# you can also provide the image hash directly (although it is not recommended :)
image_hash: "ca5daa39e738235c73d11a73b322cdf72c59739fce7ad2a8eaeed92f"
# image_hash: "c6fc9b12da19d56a998eace84b6df961852360b37479e93ef4ce3913" # approxit/ray-test:py3.10.12-ray2.3.1

capabilities: ['vpn', 'inet', 'manifest-support']
min_mem_gib: 0
Expand Down Expand Up @@ -70,7 +70,9 @@ available_node_types:
#initialization_commands: [
# "pip install endplay",
#]
initialization_commands: []
initialization_commands: [
"pip install pillow",
]

# List of shell commands to run to set up nodes
setup_commands: []
Expand Down
2 changes: 1 addition & 1 deletion golem-cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ provider:
node_config:
# if not provided, image_tag will be autodetected based on currently used python and ray versions
# check available versions at https://registry.golem.network/explore/golem/ray-on-golem
image_tag: "lucjandudek/ray-on-golem:py3.10.12-ray2.3.1"
image_tag: "golem/ray-on-golem:0.1.0-alpha.1"

# you can also provide the image hash directly (although it is not recommended :)
# image_hash: "c6fc9b12da19d56a998eace84b6df961852360b37479e93ef4ce3913" # approxit/ray-test:py3.10.12-ray2.3.1
Expand Down