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/aks/ai-toolchain-operator.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,13 +85,12 @@ The following sections describe how to create an AKS cluster with the AI toolcha
85
85
az group create --name ${AZURE_RESOURCE_GROUP} --location ${AZURE_LOCATION}
86
86
```
87
87
88
-
2. Create an AKS cluster with the AI toolchain operator add-on enabled using the [az aks create][az-aks-create] command with the `--enable-managed-identity`, `--enable-ai-toolchain-operator`, and `--enable-oidc-issuer` flags.
88
+
2. Create an AKS cluster with the AI toolchain operator add-on enabled using the [az aks create][az-aks-create] command with the `--enable-ai-toolchain-operator` and `--enable-oidc-issuer` flags.
89
89
90
90
```azurecli-interactive
91
91
az aks create --location ${AZURE_LOCATION} \
92
92
--resource-group ${AZURE_RESOURCE_GROUP} \
93
93
--name ${CLUSTER_NAME} \
94
-
--enable-managed-identity \
95
94
--enable-oidc-issuer \
96
95
--enable-ai-toolchain-operator
97
96
```
@@ -106,7 +105,6 @@ The following sections describe how to create an AKS cluster with the AI toolcha
106
105
```azurecli-interactive
107
106
az aks update --name ${CLUSTER_NAME} \
108
107
--resource-group ${AZURE_RESOURCE_GROUP} \
109
-
--enable-managed-identity \
110
108
--enable-oidc-issuer \
111
109
--enable-ai-toolchain-operator
112
110
```
@@ -125,7 +123,9 @@ The following sections describe how to create an AKS cluster with the AI toolcha
125
123
kubectl get nodes
126
124
```
127
125
128
-
3. Export environment variables for the MC resource group, principal ID identity, and KAITO identity using the following commands:
126
+
## Export environment variables
127
+
128
+
* Export environment variables for the MC resource group, principal ID identity, and KAITO identity using the following commands:
129
129
130
130
```azurecli-interactive
131
131
export MC_RESOURCE_GROUP=$(az aks show --resource-group ${AZURE_RESOURCE_GROUP} \
@@ -207,7 +207,7 @@ The following sections describe how to create an AKS cluster with the AI toolcha
207
207
3. Check your service and get the service IP address using the `kubectl get svc` command.
208
208
209
209
```azurecli-interactive
210
-
export SERVICE_IP=$(kubectl get svc workspace-falcon-7b -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
210
+
export SERVICE_IP=$(kubectl get svc workspace-falcon-7b -o jsonpath='{.spec.clusterIP}')
211
211
```
212
212
213
213
4. Run the Falcon 7B model with a sample input of your choice using the following `curl` command:
0 commit comments