Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damola12345/agrocd-app
https://github.com/damola12345/agrocd-app
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/damola12345/agrocd-app
- Owner: Damola12345
- Created: 2022-03-28T09:50:10.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-05T13:37:20.000Z (over 2 years ago)
- Last Synced: 2024-10-11T15:42:35.311Z (3 months ago)
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# agrocd-app
# 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