Skip to content
/ argocd Public

Simple example how to deploy App using ArgoCD

Notifications You must be signed in to change notification settings

thyspir/argocd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

install ArgoCD in k8s

kubectl create namespace argocd

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

access ArgoCD UI

kubectl get svc -n argocd

kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "NodePort"}}'

login with admin user and below token (as in documentation):

kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 --decode && echo

you can change and delete init password

About

Simple example how to deploy App using ArgoCD

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published