From 09b5295c852fca18935121986c43793f55a67bd9 Mon Sep 17 00:00:00 2001 From: stefanprodan Date: Thu, 5 Dec 2019 23:39:13 +0700 Subject: [PATCH] Fix App Mesh gateway namespace --- docs/gitbook/usage/appmesh-progressive-delivery.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/gitbook/usage/appmesh-progressive-delivery.md b/docs/gitbook/usage/appmesh-progressive-delivery.md index 075d8469..f42333d9 100644 --- a/docs/gitbook/usage/appmesh-progressive-delivery.md +++ b/docs/gitbook/usage/appmesh-progressive-delivery.md @@ -192,15 +192,15 @@ the gateway will retry the calls for a short period of time. Deploy the gateway behind an AWS NLB: ```bash -helm upgrade -i test flagger/appmesh-gateway \ ---namespace flagger-system \ +helm upgrade -i appmesh-gateway flagger/appmesh-gateway \ +--namespace test \ --set mesh.name=global ``` Find the gateway public address: ```bash -export URL="http://$(kubectl -n demo get svc/appmesh-gateway -ojson | jq -r ".status.loadBalancer.ingress[].hostname")" +export URL="http://$(kubectl -n test get svc/appmesh-gateway -ojson | jq -r ".status.loadBalancer.ingress[].hostname")" echo $URL ```