Skip to content

Commit

Permalink
add note about waiting for lb
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Santana <[email protected]>
  • Loading branch information
csantanapr committed Oct 27, 2023
1 parent c60267b commit 1517576
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion patterns/gitops/getting-started-argocd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}')
Expand Down

0 comments on commit 1517576

Please sign in to comment.