From 1df54c478db35f7d50c42e67e36dffc007e43556 Mon Sep 17 00:00:00 2001 From: Melody Wang Date: Tue, 8 Oct 2024 16:44:09 -0400 Subject: [PATCH 1/5] deleted $ for multiline commands --- source/cloud/azure/aks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index 3c2d0732..c74facd3 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -23,7 +23,7 @@ $ az login Now we can launch a GPU enabled AKS cluster. First launch an AKS cluster. ```console -$ az aks create -g -n rapids \ + az aks create -g -n rapids \ --enable-managed-identity \ --node-count 1 \ --enable-addons monitoring \ @@ -92,7 +92,7 @@ $ az extension add --name aks-preview ````` ```console -$ az aks nodepool add \ + az aks nodepool add \ --resource-group \ --cluster-name rapids \ --name gpunp \ From 65f77f365cf5bea74d84c4a28aff060738ce4495 Mon Sep 17 00:00:00 2001 From: Melody Wang Date: Wed, 9 Oct 2024 09:08:06 -0400 Subject: [PATCH 2/5] alternative installation command --- source/cloud/azure/azure-vm-multi.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/cloud/azure/azure-vm-multi.md b/source/cloud/azure/azure-vm-multi.md index dadb204d..fd9e7131 100644 --- a/source/cloud/azure/azure-vm-multi.md +++ b/source/cloud/azure/azure-vm-multi.md @@ -12,6 +12,8 @@ Dask Cloud Provider can be installed via `conda` or `pip`. The Azure-specific ca $ pip install dask-cloudprovider[azure] ``` +Try running `pip install "dask-cloudprovider[azure]"` instead if you encounter a `zsh: no matches found` error. + ### 2. Configure your Azure Resources Set up your [Azure Resouce Group](https://cloudprovider.dask.org/en/latest/azure.html#resource-groups), [Virtual Network](https://cloudprovider.dask.org/en/latest/azure.html#virtual-networks), and [Security Group](https://cloudprovider.dask.org/en/latest/azure.html#security-groups) according to [Dask Cloud Provider instructions](https://cloudprovider.dask.org/en/latest/azure.html#authentication). From 9981e82227131365fb742712897efb69ce54e97f Mon Sep 17 00:00:00 2001 From: Melody Wang <98235366+melodywang060@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:25:43 -0400 Subject: [PATCH 3/5] Update source/cloud/azure/aks.md Co-authored-by: James Lamb --- source/cloud/azure/aks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index c74facd3..b3c091f2 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -92,7 +92,7 @@ $ az extension add --name aks-preview ````` ```console - az aks nodepool add \ +az aks nodepool add \ --resource-group \ --cluster-name rapids \ --name gpunp \ From d265aff1da4f773a0ce030e0c3bc3c93cb4863e4 Mon Sep 17 00:00:00 2001 From: Melody Wang <98235366+melodywang060@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:25:56 -0400 Subject: [PATCH 4/5] Update source/cloud/azure/aks.md Co-authored-by: James Lamb --- source/cloud/azure/aks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/cloud/azure/aks.md b/source/cloud/azure/aks.md index b3c091f2..0e9213db 100644 --- a/source/cloud/azure/aks.md +++ b/source/cloud/azure/aks.md @@ -23,7 +23,7 @@ $ az login Now we can launch a GPU enabled AKS cluster. First launch an AKS cluster. ```console - az aks create -g -n rapids \ +az aks create -g -n rapids \ --enable-managed-identity \ --node-count 1 \ --enable-addons monitoring \ From 674722bcf0807d72e2f5b768196858c554bcefa6 Mon Sep 17 00:00:00 2001 From: Melody Wang Date: Wed, 9 Oct 2024 11:27:40 -0400 Subject: [PATCH 5/5] implemented suggestions --- source/cloud/azure/azure-vm-multi.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/cloud/azure/azure-vm-multi.md b/source/cloud/azure/azure-vm-multi.md index fd9e7131..ede0d800 100644 --- a/source/cloud/azure/azure-vm-multi.md +++ b/source/cloud/azure/azure-vm-multi.md @@ -9,11 +9,9 @@ The easiest way to setup a multi-node, multi-GPU cluster on Azure is to use [Das Dask Cloud Provider can be installed via `conda` or `pip`. The Azure-specific capabilities will need to be installed via the `[azure]` pip extra. ```shell -$ pip install dask-cloudprovider[azure] +$ pip install 'dask-cloudprovider[azure]' ``` -Try running `pip install "dask-cloudprovider[azure]"` instead if you encounter a `zsh: no matches found` error. - ### 2. Configure your Azure Resources Set up your [Azure Resouce Group](https://cloudprovider.dask.org/en/latest/azure.html#resource-groups), [Virtual Network](https://cloudprovider.dask.org/en/latest/azure.html#virtual-networks), and [Security Group](https://cloudprovider.dask.org/en/latest/azure.html#security-groups) according to [Dask Cloud Provider instructions](https://cloudprovider.dask.org/en/latest/azure.html#authentication).