Skip to content

Commit 412d2f7

Browse files
committed
fix the earlthy command
1 parent c6da887 commit 412d2f7

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

deploy/cloud/helm/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,14 @@ docker login <CONTAINER_REGISTRY>
3636
#### 🛠️ Build and push images for the Dynamo Cloud platform components
3737

3838
[One-time Action]
39-
You should build the images for the Dynamo Cloud Platform.
39+
You should build the image(s) for the Dynamo Cloud Platform.
4040
If you are a **👤 Dynamo User** you would do this step once.
4141

4242
```bash
4343
export DOCKER_SERVER=<your-docker-server>
4444
export IMAGE_TAG=<TAG>
45-
earthly --push +all-docker --DOCKER_SERVER=$DOCKER_SERVER --IMAGE_TAG=$IMAGE_TAG
45+
cd deploy/cloud/operator
46+
earthly --push +docker --DOCKER_SERVER=$DOCKER_SERVER --IMAGE_TAG=$IMAGE_TAG
4647
```
4748

4849
If you are a **🧑‍💻 Dynamo Contributor** you would have to rebuild the dynamo platform images as the code evolves. To do so please look at the [Cloud Guide](../../../docs/guides/dynamo_deploy/dynamo_cloud.md).

docs/guides/dynamo_deploy/quickstart.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,10 @@ Use this approach when developing or customizing Dynamo as a contributor, or usi
6464

6565
Ensure you have the source code checked out and are in the `dynamo` directory:
6666

67-
```bash
68-
cd deploy/cloud/helm/
69-
```
7067

7168
### Set Environment Variables
7269

73-
Our examples use the `nvcr.io` but you can setup your own values if you use another docker registry.
70+
Our examples use the [`nvcr.io`](nvcr.io/nvidia/ai-dynamo/) but you can setup your own values if you use another docker registry.
7471

7572
```bash
7673
export NAMESPACE=dynamo-cloud # or whatever you prefer.
@@ -98,15 +95,13 @@ docker login <your-registry>
9895
docker push <your-registry>/dynamo-base:latest-vllm
9996
```
10097

101-
[More on image building](../../../../README.md)
102-
103-
10498
### Install Dynamo Cloud
10599

106100
You need to build and push the Dynamo Cloud Operator Image by running
107101

108102
```bash
109-
earthly --push +all-docker --DOCKER_SERVER=$DOCKER_SERVER --IMAGE_TAG=$IMAGE_TAG
103+
cd deploy/cloud/operator
104+
earthly --push +docker --DOCKER_SERVER=$DOCKER_SERVER --IMAGE_TAG=$IMAGE_TAG
110105
```
111106

112107
The Nvidia Cloud Operator image will be pulled from the `$DOCKER_SERVER/dynamo-operator:$IMAGE_TAG`.

0 commit comments

Comments
 (0)