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
Copy file name to clipboardExpand all lines: articles/logic-apps/set-up-standard-workflows-hybrid-deployment-requirements.md
+26-21Lines changed: 26 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.service: azure-logic-apps
6
6
ms.suite: integration
7
7
ms.reviewer: estfan, azla
8
8
ms.topic: how-to
9
-
ms.date: 03/10/2025
9
+
ms.date: 03/13/2025
10
10
# 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.
11
11
---
12
12
@@ -157,9 +157,10 @@ Your Kubernetes cluster requires inbound and outbound connectivity with the [SQL
157
157
az login
158
158
az account set --subscription $SUBSCRIPTION
159
159
az provider register --namespace Microsoft.KubernetesConfiguration --wait
160
+
az provider register --namespace Microsoft.Kubernetes --wait
160
161
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 \
163
164
--location $LOCATION
164
165
az aks create \
165
166
--resource-group $AKS_CLUSTER_GROUP_NAME \
@@ -179,7 +180,10 @@ Your Kubernetes cluster requires inbound and outbound connectivity with the [SQL
179
180
For more information, see the following resources:
180
181
181
182
-[Quickstart: Deploy an Azure Kubernetes Service (AKS) cluster using Azure CLI](/azure/aks/learn/quick-kubernetes-deploy-cli)
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:
1. Install the Kubernetes package manager named **Helm**:
247
270
248
271
```azurecli
@@ -280,24 +303,6 @@ To create your Azure Arc-enabled Kubernetes cluster, connect your Kubernetes clu
280
303
281
304
## Connect your Kubernetes cluster to Azure Arc
282
305
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:
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:
0 commit comments