Skip to content

Commit 5f08558

Browse files
committed
Incorp updates
1 parent d9bfb88 commit 5f08558

File tree

2 files changed

+31
-9
lines changed

2 files changed

+31
-9
lines changed

AKS-Hybrid/TOC.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,20 @@
5656
href: create-clusters-bicep.md
5757
- name: Terraform
5858
href: create-clusters-terraform.md
59-
- name: Deploy to Azure using a quickstart template
59+
- name: Quickstart template
6060
href: /samples/azure/azure-quickstart-templates/aks-on-ashci
6161
- name: Azure Resource Manager template
6262
href: resource-manager-quickstart.md
6363
- name: Networking
6464
items:
6565
- name: Create logical networks
6666
href: aks-networks.md
67+
- name: Simplify outbound connectivity
68+
href: arc-gateway-aks-arc.md
69+
- name: Deploy in environments with low internet bandwidth
70+
items:
71+
- name: Disable Windows nodepool
72+
href: disable-windows-nodepool,md
6773
- name: Use MetalLB load balancer
6874
items:
6975
- name: Azure CLI
@@ -72,8 +78,6 @@
7278
href: deploy-load-balancer-portal.md
7379
# - name: Troubleshoot issues
7480
# href: load-balancer-troubleshoot.md
75-
- name: Use Arc Gateway
76-
href: arc-gateway-aks-arc.md
7781
- name: Authentication and authorization
7882
items:
7983
- name: Enable Microsoft Entra ID authentication for Kubernetes clusters
@@ -88,6 +92,10 @@
8892
href: restrict-ssh-access.md
8993
- name: Deploy and configure Workload Identity
9094
href: workload-identity.md
95+
- name: High availability
96+
items:
97+
- name: Use availability sets
98+
href: availability-sets.md
9199
- name: Storage
92100
items:
93101
- name: CSI storage drivers
@@ -108,15 +116,13 @@
108116
href: cluster-labels.md
109117
- name: Taints
110118
href: aks-arc-use-node-taints.md
111-
- name: Use availability sets
112-
href: availability-sets.md
113-
- name: Scale a Kubernetes cluster
119+
- name: Use auto-scaler
114120
href: auto-scale-aks-arc.md
115121
- name: Upgrade Kubernetes clusters
116122
href: cluster-upgrade.md
117123
- name: Create Windows Server containers
118124
href: aks-create-containers.md
119-
- name: Integrate Azure Container Registry with a Kubernetes cluster
125+
- name: Integrate Azure Container Registry
120126
href: deploy-container-registry.md
121127
- name: Monitoring and logging
122128
items:

AKS-Hybrid/arc-gateway-aks-arc.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,35 @@ Ensure your Arc gateway URL and all of the URLs below are allowed through your e
5757
|---------|---------|
5858
|`[Your URL prefix].gw.arc.azure.com`| Your gateway URL. You can obtain this URL by running `az arcgateway list` after you create the resource. |
5959
|`management.azure.com` |Azure Resource Manager endpoint, required for the Azure Resource Manager control channel. |
60-
|`<region>.obo.arc.azure.com` |Required when Cluster Connect is configured. |
60+
|`<region>.obo.arc.azure.com` |Required when `az connectedk8s proxy` is used. |
6161
|`login.microsoftonline.com`, `<region>.login.microsoft.com` | Microsoft Entra ID endpoint, used for acquiring identity access tokens. |
6262
|`gbl.his.arc.azure.com`, `<region>.his.arc.azure.com` |The cloud service endpoint for communicating with Arc Agents. Uses short names; for example `eus` for East US. |
6363
|`mcr.microsoft.com`, `*.data.mcr.microsoft.com` |Required to pull container images for Azure Arc agents. |
6464

65-
## Create AKS Arc clusters with Arc gateway enabled
65+
## Create an AKS Arc cluster with Arc gateway enabled
6666

6767
Run the following command to create AKS Arc clusters with Arc gateway enabled
6868

6969
```azurecli
7070
az aksarc create -n $clusterName -g $resourceGroup --custom-location $customlocationID --vnet-ids $arcVmLogNetId --aad-admin-group-object-ids $aadGroupID --gateway-id $gatewayId --generate-ssh-keys
7171
```
7272

73+
## Update an AKS Arc cluster and enable Arc gateway
74+
75+
Run the following command to create AKS Arc clusters with Arc gateway enabled:
76+
77+
```azurecli
78+
az aksarc update -n $clusterName -g $resourceGroup --gateway-id $gatewayId
79+
```
80+
81+
## Disable Arc gateway on an AKS Arc cluster
82+
83+
Run the following command to create AKS Arc clusters with Arc gateway enabled:
84+
85+
```azurecli
86+
az aksarc update -n $clusterName -g $resourceGroup --disable-gateway
87+
```
88+
7389
## Monitor traffic
7490

7591
To audit your gateway traffic, view the gateway router logs:

0 commit comments

Comments
 (0)