https://github.com/mahdadghasemian/argocd-tutorial
A simple demo
https://github.com/mahdadghasemian/argocd-tutorial
Last synced: 6 months ago
JSON representation
A simple demo
- Host: GitHub
- URL: https://github.com/mahdadghasemian/argocd-tutorial
- Owner: MahdadGhasemian
- Created: 2023-12-27T08:19:13.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-28T09:18:03.000Z (almost 2 years ago)
- Last Synced: 2025-02-04T16:15:00.354Z (8 months ago)
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# argocd-tutorial
A simple demo
#### Commands
```bash
# 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# run application
kubectl apply -f application.yml```
#### Links
- ArgoCD Configuration: [https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/](https://argo-cd.readthedocs.io/en/stable/operator-manual/declarative-setup/)
- ArgoCD Example Apps: [https://github.com/argoproj/argocd-example-apps](https://github.com/argoproj/argocd-example-apps)