From 61a23d284c44deb013179aca645f337fbb2ac59b Mon Sep 17 00:00:00 2001 From: devopsjourney1 <34145011+devopsjourney1@users.noreply.github.com> Date: Tue, 20 Dec 2022 15:58:29 -0800 Subject: [PATCH] Update readme.md --- readme.md | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/readme.md b/readme.md index 04ee004..b40ed77 100644 --- a/readme.md +++ b/readme.md @@ -1,10 +1,10 @@ -# Install argo cd via helm -link to youtube video... +# Follow this video to be a ArgoCD Boss +https://youtu.be/JLrR9RV9AFA -# Access -### Get instructions + +# Installing latest/stable version of ArgoCD ``` kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml @@ -28,6 +28,14 @@ kubectl port-forward svc/argocd-server -n argocd 8080:443 argocd login 127.0.0.1:8080 ``` +# Creating an Application using ArgoCD CLI: +``` +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 +``` + # Command Cheat sheet ``` argocd app create #Create a new Argo CD application. @@ -42,19 +50,6 @@ 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/