Skip to content

Commit 1adfe57

Browse files
authored
Updates for setup steps
1 parent de7a639 commit 1adfe57

File tree

1 file changed

+26
-21
lines changed

1 file changed

+26
-21
lines changed

articles/logic-apps/set-up-standard-workflows-hybrid-deployment-requirements.md

Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.service: azure-logic-apps
66
ms.suite: integration
77
ms.reviewer: estfan, azla
88
ms.topic: how-to
9-
ms.date: 03/10/2025
9+
ms.date: 03/13/2025
1010
# Customer intent: As a developer, I need to set up the requirements to host and run Standard logic app workflows on infrastructure that my organization owns, which can include on-premises systems, private clouds, and public clouds.
1111
---
1212

@@ -157,9 +157,10 @@ Your Kubernetes cluster requires inbound and outbound connectivity with the [SQL
157157
az login
158158
az account set --subscription $SUBSCRIPTION
159159
az provider register --namespace Microsoft.KubernetesConfiguration --wait
160+
az provider register --namespace Microsoft.Kubernetes --wait
160161
az extension add --name k8s-extension --upgrade --yes
161-
az group create
162-
--name $AKS_CLUSTER_GROUP_NAME
162+
az group create \
163+
--name $AKS_CLUSTER_GROUP_NAME \
163164
--location $LOCATION
164165
az aks create \
165166
--resource-group $AKS_CLUSTER_GROUP_NAME \
@@ -179,7 +180,10 @@ Your Kubernetes cluster requires inbound and outbound connectivity with the [SQL
179180
For more information, see the following resources:
180181

181182
- [Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure CLI](/azure/aks/learn/quick-kubernetes-deploy-cli)
183+
- [**az extension add**](/cli/azure/extension#az-extension-add)
184+
- [Register the required namespaces](/azure/container-apps/azure-arc-enable-cluster?tabs=azure-cli#setup)
182185
- [**az account set**](/cli/azure/account#az-account-set)
186+
- [**az provider register**](/cli/azure/provider#az-provider-register)
183187
- [**az group create**](/cli/azure/group#az-group-create)
184188
- [**az aks create**](/cli/azure/aks#az-aks-create)
185189

@@ -219,6 +223,7 @@ To create your Azure Arc-enabled Kubernetes cluster, connect your Kubernetes clu
219223

220224
```azurecli
221225
az provider register --namespace Microsoft.ExtendedLocation --wait
226+
az provider register --namespace Microsoft.Kubernetes --wait
222227
az provider register --namespace Microsoft.KubernetesConfiguration --wait
223228
az provider register --namespace Microsoft.App --wait
224229
az provider register --namespace Microsoft.OperationalInsights --wait
@@ -243,6 +248,24 @@ To create your Azure Arc-enabled Kubernetes cluster, connect your Kubernetes clu
243248
- [Set-ExecutionPolicy](/powershell/module/microsoft.powershell.security/set-executionpolicy)
244249
- [choco install kubernetes-cli](https://docs.chocolatey.org/en-us/choco/commands/install/)
245250

251+
1. Test your connection to your cluster by getting the [**kubeconfig** file](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/):
252+
253+
```azurecli
254+
az aks get-credentials \
255+
--resource-group $AKS_CLUSTER_GROUP_NAME \
256+
--name $AKS_NAME \
257+
--admin
258+
kubectl get ns
259+
```
260+
261+
By default, the **kubeconfig** file is saved to the path, **~/.kube/config**. This command applies to our example Kubernetes cluster and differs for other kinds of Kubernetes clusters.
262+
263+
For more information, see the following resources:
264+
265+
- [Create connected cluster](../container-apps/azure-arc-enable-cluster.md?tabs=azure-cli#create-a-connected-cluster)
266+
- [**az aks get-credentials**](/cli/azure/aks#az-aks-get-credentials)
267+
- [**kubectl get**](https://kubernetes.io/docs/reference/kubectl/generated/kubectl_get/)
268+
246269
1. Install the Kubernetes package manager named **Helm**:
247270

248271
```azurecli
@@ -280,24 +303,6 @@ To create your Azure Arc-enabled Kubernetes cluster, connect your Kubernetes clu
280303
281304
## Connect your Kubernetes cluster to Azure Arc
282305
283-
1. Test your connection to your cluster by getting the [**kubeconfig** file](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/):
284-
285-
```azurecli
286-
az aks get-credentials \
287-
--resource-group $AKS_CLUSTER_GROUP_NAME \
288-
--name $AKS_NAME \
289-
--admin
290-
kubectl get ns
291-
```
292-
293-
By default, the **kubeconfig** file is saved to the path, **~/.kube/config**. This command applies to our example Kubernetes cluster and differs for other kinds of Kubernetes clusters.
294-
295-
For more information, see the following resources:
296-
297-
- [Create connected cluster](../container-apps/azure-arc-enable-cluster.md?tabs=azure-cli#create-a-connected-cluster)
298-
- [**az aks get-credentials**](/cli/azure/aks#az-aks-get-credentials)
299-
- [**kubectl get**](https://kubernetes.io/docs/reference/kubectl/generated/kubectl_get/)
300-
301306
1. Based on your Kubernetes cluster deployment, set the following environment variable to provide a name to use for the Azure resource group that contains your Azure Arc-enabled cluster and resources:
302307
303308
```azurecli

0 commit comments

Comments
 (0)