Skip to content

A practical demo using gitOps approach using argoCD for deployment of docker container on application on kubernetes cluster.

Notifications You must be signed in to change notification settings

rashidmajeed/GitOps-ArgoCD-Kubernetes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

GitOps using ArgoCD for deployment on Kubernetes

Commands to proceed further

# 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 port-forward svc/argocd-server 8080:443 -n argocd

# 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

Links

About

A practical demo using gitOps approach using argoCD for deployment of docker container on application on kubernetes cluster.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published