Skip to content

Commit

Permalink
update readme
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 1517576 commit 88b417c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion patterns/gitops/getting-started-argocd/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ArgoCD on Amazon EKS

This example shows how to deploy Amazon EKS with addons configured via ArgoCD
This example shows how to deploy Amazon EKS with addons configured via ArgoCD using the GitOps Bridge Pattern

Deploy EKS Cluster
```shell
Expand All @@ -13,6 +13,15 @@ Get `kubectl` config, and run the output
terraform output -raw configure_kubectl
```

Terraform added the GitOps Bridge Metadata in the ArgoCD Secret.
The annotations contains the metadata for the addons helm charts.
The labels contains an easy way to enable or disable an addon for the cluster.
```shell
kubectl get secret -n argocd -l argocd.argoproj.io/secret-type=cluster -o jsonpath='{.metadata.annotations}'
kubectl get secret -n argocd -l argocd.argoproj.io/secret-type=cluster -o jsonpath='{.metadata.labels}'
```


Deploy Addons using ArgoCD
```shell
kubectl apply -f bootstrap/addons.yaml
Expand Down

0 comments on commit 88b417c

Please sign in to comment.