From 15175766283b639d60866f1ad6abf09fae53d1b0 Mon Sep 17 00:00:00 2001 From: Carlos Santana Date: Fri, 27 Oct 2023 01:35:32 -0400 Subject: [PATCH] add note about waiting for lb Signed-off-by: Carlos Santana --- patterns/gitops/getting-started-argocd/README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/patterns/gitops/getting-started-argocd/README.md b/patterns/gitops/getting-started-argocd/README.md index e8a0529498..d785463306 100644 --- a/patterns/gitops/getting-started-argocd/README.md +++ b/patterns/gitops/getting-started-argocd/README.md @@ -46,11 +46,19 @@ kubectl get -n game-2048 deployments kubectl get -n game-2048 ingress ``` -Get the Ingress URL for the Application (You need to wait 2 minutes for Load Balancer to be created) +Get the Ingress URL for the Application ```shell echo "Application URL: http://$(kubectl get -n game-2048 ingress game-2048 -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')" ``` +!!! info + You might need to wait a few minutes, and then refresh your browser. + If your Ingress isn't created after several minutes, then run this command to view the AWS Load Balancer Controller logs: + +```shell +kubectl logs -n kube-system deployment.apps/aws-load-balancer-controller +``` + Verify Application from Terminal ```shell curl -I $(kubectl get -n game-2048 ingress game-2048 -o jsonpath='{.status.loadBalancer.ingress[0].hostname}')