From 42a66c4dd9b17a8e815fe8be9725123dcb9108c0 Mon Sep 17 00:00:00 2001 From: Carlos Santana Date: Wed, 1 Nov 2023 18:51:52 -0400 Subject: [PATCH] update readme Signed-off-by: Carlos Santana --- patterns/gitops/getting-started-argocd/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/patterns/gitops/getting-started-argocd/README.md b/patterns/gitops/getting-started-argocd/README.md index e74a58a1e4..84ec2d1f8f 100644 --- a/patterns/gitops/getting-started-argocd/README.md +++ b/patterns/gitops/getting-started-argocd/README.md @@ -196,7 +196,10 @@ NAME CLASS HOSTS ADDRESS PORTS ingress/game-2048 alb * k8s-<>.us-west-2.elb.amazonaws.com 80 7h59m ``` -Wait until and event for ingress `game-2048` contains `Successfully reconciled`. Crl+C to exit the `watch` command +Wait until and event for ingress `game-2048` contains `Successfully reconciled`. +Use the Crl+C to exit the `watch` command. AWS Load Balancer can take a couple of +minutes in order to be created. +Hit Ctrl+C or Cmd+C to exit the watch command. ```shell kubectl events -n game-2048 --for ingress/game-2048 --watch ``` @@ -221,7 +224,7 @@ The expected output should look like the following: ``` >A success response should contain `HTTP/1.1 200 OK`. -Retrieve the ingress URL: +Retrieve the ingress URL to access the application in your local web browser. ```shell echo "Application URL: http://$(kubectl get -n game-2048 ingress game-2048 -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')" ```