Skip to content

Commit 97af8f4

Browse files
committed
incorp feedback
1 parent 07f901c commit 97af8f4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/aks/ai-toolchain-operator.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,12 @@ The following sections describe how to create an AKS cluster with the AI toolcha
8585
az group create --name ${AZURE_RESOURCE_GROUP} --location ${AZURE_LOCATION}
8686
```
8787
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.
8989
9090
```azurecli-interactive
9191
az aks create --location ${AZURE_LOCATION} \
9292
--resource-group ${AZURE_RESOURCE_GROUP} \
9393
--name ${CLUSTER_NAME} \
94-
--enable-managed-identity \
9594
--enable-oidc-issuer \
9695
--enable-ai-toolchain-operator
9796
```
@@ -106,7 +105,6 @@ The following sections describe how to create an AKS cluster with the AI toolcha
106105
```azurecli-interactive
107106
az aks update --name ${CLUSTER_NAME} \
108107
--resource-group ${AZURE_RESOURCE_GROUP} \
109-
--enable-managed-identity \
110108
--enable-oidc-issuer \
111109
--enable-ai-toolchain-operator
112110
```
@@ -125,7 +123,9 @@ The following sections describe how to create an AKS cluster with the AI toolcha
125123
kubectl get nodes
126124
```
127125
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:
129129
130130
```azurecli-interactive
131131
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
207207
3. Check your service and get the service IP address using the `kubectl get svc` command.
208208
209209
```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}')
211211
```
212212
213213
4. Run the Falcon 7B model with a sample input of your choice using the following `curl` command:

0 commit comments

Comments
 (0)