From 3ff5f98a613102511d2bdefe9b6498fd7f50dfa0 Mon Sep 17 00:00:00 2001 From: Brad Date: Thu, 15 Dec 2022 20:22:18 -0800 Subject: [PATCH] update readme --- readme.md | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..382701a --- /dev/null +++ b/readme.md @@ -0,0 +1,60 @@ + + +# Install argo cd via helm +link to youtube video... + +# Access +### Get instructions +``` +kubectl create namespace argocd +kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml +``` + +### Forward Ports +``` +k get services -n argocd +kubectl port-forward service/argocd-server -n argocd 8080:443 +``` + +### Get Credentials +``` +kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d +``` + +# Install ArgoCD CLI / Login via CLI +``` +brew install argocd +kubectl port-forward svc/argocd-server -n argocd 8080:443 +argocd login 127.0.0.1:8080 +``` + +# Command Cheat sheet +`argocd app create` Create a new Argo CD application. +`argocd app list` List all applications in Argo CD. +`argocd app logs ` Get the application’s log output. +`argocd app get ` Get information about an Argo CD application. +`argocd app diff ` Compare the application’s configuration to its source repository. +`argocd app sync ` Synchronize the application with its source repository. +`argocd app history` Get information about an Argo CD application. +`argocd app rollback ` Rollback to a previous version +`argocd app set ` Set the application’s configuration. +`argocd app delete ` Delete an Argo CD application. + + +# Example Commands: +argocd app list +``` +argocd app create webapp-kustom-prod \ +--repo https://github.com/devopsjourney1/argo-examples.git \ +--path kustom-webapp/overlays/prod --dest-server https://kubernetes.default.svc \ +--dest-namespace prod +``` + + + +## Get started +https://argo-cd.readthedocs.io/en/stable/getting_started/ + + + +