Skip to content

Argo CD is a declarative continuous delivery tool for Kubernetes applications.

Notifications You must be signed in to change notification settings

rizkylab/argocd-demo-setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Install ArgoCD

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

Change Service to NodePort

Edit the service can change the service type from ClusterIP to NodePort

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

Fetch Password

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

Scale Replicaset

kubectl scale --replicas=3 deployment nginx -n default

About

Argo CD is a declarative continuous delivery tool for Kubernetes applications.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published