Forgot to remove namespace (#14982)

* remove ns

* snips
This commit is contained in:
Lin Sun 2024-04-26 19:40:18 -04:00 committed by GitHub
parent 754da07b89
commit a330da319b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ Make sure the default namespace does not include the label `istio-injection=enab
Set the environment variables for the Kubernetes Gateway:
{{< text bash >}}
$ kubectl wait --for=condition=programmed gtw/bookinfo-gateway -n istio-system
$ kubectl wait --for=condition=programmed gtw/bookinfo-gateway
$ export GATEWAY_HOST=bookinfo-gateway-istio.default
$ export GATEWAY_SERVICE_ACCOUNT=ns/default/sa/bookinfo-gateway-istio
{{< /text >}}

View File

@ -58,7 +58,7 @@ kubectl apply -f samples/bookinfo/gateway-api/bookinfo-gateway.yaml
}
snip_deploy_the_sample_application_4() {
kubectl wait --for=condition=programmed gtw/bookinfo-gateway -n istio-system
kubectl wait --for=condition=programmed gtw/bookinfo-gateway
export GATEWAY_HOST=bookinfo-gateway-istio.default
export GATEWAY_SERVICE_ACCOUNT=ns/default/sa/bookinfo-gateway-istio
}