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

Alternative Dask-CloudProvider Azure Installation Command #457

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions source/cloud/azure/aks.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <resource group> -n rapids \
az aks create -g <resource group> -n rapids \
--enable-managed-identity \
--node-count 1 \
--enable-addons monitoring \
Expand Down Expand Up @@ -92,7 +92,7 @@ $ az extension add --name aks-preview
`````

```console
$ az aks nodepool add \
az aks nodepool add \
--resource-group <resource group> \
--cluster-name rapids \
--name gpunp \
Expand Down
2 changes: 1 addition & 1 deletion source/cloud/azure/azure-vm-multi.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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]'
```

### 2. Configure your Azure Resources
Expand Down