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 2 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 \
melodywang060 marked this conversation as resolved.
Show resolved Hide resolved
--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 \
melodywang060 marked this conversation as resolved.
Show resolved Hide resolved
--resource-group <resource group> \
--cluster-name rapids \
--name gpunp \
Expand Down
2 changes: 2 additions & 0 deletions source/cloud/azure/azure-vm-multi.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of adding another line to the docs, I think it'd be simpler to just add single quotes to the code sample above. That should always work, in any shell. Could you please do that instead?


### 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).
Expand Down