diff --git a/infrastructure/nomad/README.md b/infrastructure/nomad/README.md index dbebaa713..a1f38d588 100644 --- a/infrastructure/nomad/README.md +++ b/infrastructure/nomad/README.md @@ -114,7 +114,17 @@ Example of destroying running Nomad cluster: Example of deploying Nomad cluster: ```shell -./cluster.sh deploy --no-logs-collection --datadog-key ` --l1-rpc-url +./cluster.sh deploy --no-logs-collection --datadog-key --l1-rpc-url ``` -> After successful deployment, you can find all secrets at: http://:1111/secrets.json +> If only artifacts for a particular architecture and operating system are needed, you +> can specify them using the following environment variables ARTIFACTS_GOOS and ARTIFACTS_GOARCH, respectively. +> This will reduce the number of artifacts generated and thus reduce deployment time. +> +> Example: +> ```shell +> export ARTIFACTS_GOOS=linux +> export ARTIFACTS_GOARCH=amd64 +> ``` + +> After successful deployment, you can find all artifacts (including secrets) at: http://:1111