Skip to content

Commit a8b351b

Browse files
committed
[Dev Spaces] updated to helm 3
1 parent 72a743b commit a8b351b

File tree

3 files changed

+10
-35
lines changed

3 files changed

+10
-35
lines changed

articles/dev-spaces/how-to/run-dev-spaces-windows-containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ git clone https://github.com/Azure/dev-spaces
5656
cd dev-spaces/samples/existingWindowsBackend/mywebapi-windows
5757
```
5858

59-
The sample application uses [Helm][helm-installed] to run the Windows service on your cluster. Navigate to the `charts` directory and use Helm run the Windows service:
59+
The sample application uses [Helm 3][helm-installed] to run the Windows service on your cluster. Navigate to the `charts` directory and use Helm run the Windows service:
6060

6161
```console
6262
cd charts/

articles/dev-spaces/how-to/use-private-helm-repo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Learn more about [Helm and how it works][helm].
7676

7777
[helm]: https://docs.helm.sh
7878
[helm-chart]: https://helm.sh/docs/topics/charts/
79-
[helm-dependency-update]: https://v2.helm.sh/docs/helm/#helm-dependency-update
80-
[helm-repo-add]: https://v2.helm.sh/docs/helm/#helm-repo-add
81-
[helm-repo-update]: https://v2.helm.sh/docs/helm/#helm-repo-update
79+
[helm-dependency-update]: https://helm.sh/docs/topics/charts/#managing-dependencies-with-the-dependencies-field
80+
[helm-repo-add]: https://helm.sh/docs/intro/using_helm/#helm-repo-working-with-repositories
81+
[helm-repo-update]: https://helm.sh/docs/intro/using_helm/#helm-repo-working-with-repositories
8282
[helm-requirements]: https://helm.sh/docs/topics/charts/#chart-dependencies

articles/dev-spaces/quickstart-team-development.md

Lines changed: 6 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Team development on Kubernetes"
33
services: azure-dev-spaces
4-
ms.date: 04/25/2019
4+
ms.date: 01/22/2020
55
ms.topic: quickstart
66
description: "This quickstart shows you how to do team Kubernetes development with containers and microservices with Azure Dev Spaces"
77
keywords: "Docker, Kubernetes, Azure, AKS, Azure Kubernetes Service, containers, Helm, service mesh, service mesh routing, kubectl, k8s"
@@ -21,7 +21,7 @@ In this guide, you will learn how to:
2121

2222
- An Azure subscription. If you don't have an Azure subscription, you can create a [free account](https://azure.microsoft.com/free).
2323
- [Azure CLI installed](/cli/azure/install-azure-cli?view=azure-cli-latest).
24-
- [Helm 2.13 - 2.16 installed][helm-installed].
24+
- [Helm 3 installed][helm-installed].
2525

2626
## Create an Azure Kubernetes Service cluster
2727

@@ -76,39 +76,14 @@ The commands for running the sample application on Kubernetes are part of an exi
7676

7777
You can use Azure Dev Spaces for team development after an application is running in a cluster regardless of the tooling used to deploy it.
7878

79-
Use the `helm init` and `helm install` commands to set up and install the sample application on your cluster.
79+
Use the `helm install` command to set up and install the sample application on your cluster.
8080

8181
```cmd
8282
cd charts/
83-
helm init --wait
84-
helm install -n bikesharing . --dep-up --namespace dev --atomic
83+
helm install bikesharing . --dependency-update --namespace dev --atomic
8584
```
86-
> [!Note]
87-
> **If you are using an RBAC-enabled cluster**, be sure to configure [a service account for Tiller](https://helm.sh/docs/using_helm/#role-based-access-control). Otherwise, `helm` commands will fail.
8885

89-
The `helm install` command may take several minutes to complete. The output of the command shows the status of all the services it deployed to the cluster when completed:
90-
91-
```cmd
92-
$ cd charts/
93-
$ helm init --wait
94-
...
95-
Happy Helming!
96-
97-
$ helm install -n bikesharing . --dep-up --namespace dev --atomic
98-
99-
Hang tight while we grab the latest from your chart repositories...
100-
...
101-
NAME READY UP-TO-DATE AVAILABLE AGE
102-
bikes 1/1 1 1 4m32s
103-
bikesharingweb 1/1 1 1 4m32s
104-
billing 1/1 1 1 4m32s
105-
gateway 1/1 1 1 4m32s
106-
reservation 1/1 1 1 4m32s
107-
reservationengine 1/1 1 1 4m32s
108-
users 1/1 1 1 4m32s
109-
```
110-
111-
After the sample application is installed on your cluster and since you have Dev Spaces enabled on your cluster, use the `azds list-uris` command to display the URLs for the sample application in *dev* that is currently selected.
86+
The `helm install` command may take several minutes to complete. After the sample application is installed on your cluster and since you have Dev Spaces enabled on your cluster, use the `azds list-uris` command to display the URLs for the sample application in *dev* that is currently selected.
11287

11388
```cmd
11489
$ azds list-uris
@@ -229,5 +204,5 @@ Learn how Azure Dev Spaces helps you develop more complex apps across multiple c
229204
> [!div class="nextstepaction"]
230205
> [Working with multiple containers and team development](multi-service-nodejs.md)
231206
232-
[helm-installed]: https://v2.helm.sh/docs/using_helm/#installing-helm
207+
[helm-installed]: https://helm.sh/docs/intro/install/
233208
[supported-regions]: https://azure.microsoft.com/global-infrastructure/services/?products=kubernetes-service

0 commit comments

Comments
 (0)