Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Update custom-vnet.md #1888

Merged
merged 1 commit into from
Dec 6, 2017
Merged
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 docs/custom-vnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ For Kubernetes clusters, we need to update the VNET to attach to the route table

```
#!/bin/bash
rt=$(az network route-table list -g acs-custom-vnet | jq -r '.[].id')
rt=$(az network route-table list -g acs-custom-vnet -o json | jq -r '.[].id')
az network vnet subnet update -n KubernetesSubnet -g acs-custom-vnet --vnet-name KubernetesCustomVNET --route-table $rt
```

... where `KubernetesSubnet` is the name of the vnet subnet, and `KubernetesCustomVNET` is the name of the custom VNET itself.

## Connect to your new cluster
Once the deployment is completed, you can follow [this documentation](https://docs.microsoft.com/en-us/azure/container-service/container-service-connect) to connect to your new Azure Container Service cluster.
Once the deployment is completed, you can follow [this documentation](https://docs.microsoft.com/en-us/azure/container-service/container-service-connect) to connect to your new Azure Container Service cluster.