You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd dev-spaces/samples/existingWindowsBackend/mywebapi-windows
57
57
```
58
58
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:
@@ -76,39 +76,14 @@ The commands for running the sample application on Kubernetes are part of an exi
76
76
77
77
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.
78
78
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.
80
80
81
81
```cmd
82
82
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
85
84
```
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.
88
85
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.
112
87
113
88
```cmd
114
89
$ azds list-uris
@@ -229,5 +204,5 @@ Learn how Azure Dev Spaces helps you develop more complex apps across multiple c
229
204
> [!div class="nextstepaction"]
230
205
> [Working with multiple containers and team development](multi-service-nodejs.md)
0 commit comments