Skip to content

Commit 55ae013

Browse files
committed
Fix
1 parent a3450bb commit 55ae013

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scenarios/AksOpenAiTerraform/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ envsubst < quickstart-app.yml | kubectl apply -f -
6464

6565
## Wait for public IP
6666
```bash
67-
kubectl wait --for=jsonpath="{.status.loadBalancer.ingress[0].ip}" service/magic8ball
68-
PUBLIC_IP=$(kubectl get service ingress-nginx-controller -o=jsonpath="{.status.loadBalancer.ingress[0].ip}")
69-
echo "Connect to app: $PUBLIC_IP"
67+
kubectl wait --for=jsonpath="{.status.loadBalancer.ingress[0].ip}" service/ingress-nginx-controller
68+
PUBLIC_IP=$(kubectl get service/ingress-nginx-controller -o=jsonpath="{.status.loadBalancer.ingress[0].ip}")
69+
echo "Visit: https://$HOSTNAME (IP Address: $PUBLIC_IP)"
7070
```

0 commit comments

Comments
 (0)