Skip to content

Commit

Permalink
Experimenting with ArgoCD
Browse files Browse the repository at this point in the history
  • Loading branch information
kaihendry committed Jul 28, 2022
1 parent 7b0fe75 commit 959642d
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export AWS_PROFILE=tw
export AWS_REGION=ap-southeast-1
19 changes: 19 additions & 0 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
aws eks update-kubeconfig --name ex-hello-eks

https://argo-cd.readthedocs.io/en/stable/getting_started/

kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/core-install.yaml

Install argocd client

argocd login --core

Run a service:

kubectl config set-context --current --namespace=argocd
argocd app create guestbook --repo https://github.com/argoproj/argocd-example-apps.git --path guestbook --dest-server https://kubernetes.default.svc --dest-namespace default
argocd app get guestbook
argocd app sync guestbook

0 comments on commit 959642d

Please sign in to comment.