https://github.com/moduscreateorg/argocd-experiment
Repository for argocd.
https://github.com/moduscreateorg/argocd-experiment
Last synced: about 1 year ago
JSON representation
Repository for argocd.
- Host: GitHub
- URL: https://github.com/moduscreateorg/argocd-experiment
- Owner: ModusCreateOrg
- Created: 2021-11-19T14:54:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-24T10:02:41.000Z (over 4 years ago)
- Last Synced: 2025-01-26T18:27:57.989Z (about 1 year ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
kubectl create namespace argocd kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
kubectl get svc -n argocd
kubectl edit svc argocd-server -n argocd ##replace ClusterIP with NodePort
kubectl get svc -n argocd
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
access with master/nodeIP: nodePort --> to access the Argo CD UI username: admin password: Output of Line 11 above.