ArgoCD-Basics-To-Production
ArgoCD-Basics-to-Production is a beginner-friendly repository designed to help you understand GitOps and Argo CD from fundamentals to real-world production use. It covers GitOps concepts, Argo CD architecture, and hands-on deployment workflows, organized as a progressive learning series.
File Explorer
Download Latest Version (.zip)- README.md
- README.md
- README.md
- sample-app.yaml
- .dockerignore
- app.py
- Dockerfile
- requirements.txt
- app1-app-crd-new.yaml
- app1-app-crd.yaml
- app1-deploy.yaml
- app1-svc.yaml
- README.md
- .dockerignore
- app.py
- Dockerfile
- app1-be-app-crd.yaml
- deploy.yaml
- svc.yaml
- .dockerignore
- app.py
- Dockerfile
- app1-fe-app-crd.yaml
- deploy.yaml
- svc.yaml
- app1-appproj.yaml
- README.md
- .dockerignore
- app.py
- Dockerfile
- app1-be-app-crd.yaml
- deploy.yaml
- presync-hook.yaml
- svc.yaml
- .dockerignore
- app.py
- Dockerfile
- app1-fe-app-crd.yaml
- deploy.yaml
- postsync-hook.yaml
- svc.yaml
- README.md
- app1-app-crd.yaml
- 01-ns.yaml
- 02-resourcequota.yaml
- 03-sa.yaml
- 04-cm.yaml
- 05-secret.yaml
- 06-svc.yaml
- 07-deploy.yaml
- README.md
- test1.yaml
- test2.yaml
- 01-namespace.yaml
- 02-configmap.yaml
- 03-service.yaml
- 04-deployment.yaml
- Chart.yaml
- values.yaml
- app1-app-crd.yaml
- README.md
- .dockerignore
- app.py
- Dockerfile
- product1-be-app-crd.yaml
- deploy.yaml
- svc.yaml
- .dockerignore
- app.py
- Dockerfile
- product1-fe-app-crd.yaml
- deploy.yaml
- svc.yaml
- product1-root.yaml
- README.md
- 01-eks-config-Mumbai.yaml
- 02-eks-config-NVirginia.yaml
- 01-cm.yaml
- 02-svc.yaml
- 03-deploy.yaml
- 01-cm.yaml
- 02-svc.yaml
- 03-deploy.yaml
- app1-ApplicationSet.yaml
- clustergenerator.yaml
- deployment.yaml
- deployment.yaml
- deployment.yaml
- git-dir-generator.yaml
- deployment.yaml
- deployment.yaml
- clusters.yaml
- git-file-generator.yaml
- deployment.yaml
- deployment.yaml
- deployment.yaml
- matrix-generator.yaml
- README.md
- sample-appcrd.yaml
- 10a.png
- 10b.png
- 10c.png
- 10d.png
- 1a.png
- 1b.png
- 1c.png
- 1d.png
- 1e.png
- 2a.png
- 2b.png
- 3a.png
- 3b.png
- 3c.png
- 3d.png
- 4a.png
- 4b.png
- 5a.png
- 5b.png
- 5c.png
- 5d.png
- 5e.png
- 6a.png
- 6b.png
- 6c.png
- 6d.png
- 7a.png
- 7b.png
- 7c.png
- 7d.png
- 9a.png
- 9b.png
- 9c.png
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/CloudWithVarJosh/ArgoCD-Basics-To-Production
Downloads the entire project code from GitHub to your computer.
cd ArgoCD-Basics-To-Production
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
docker build -f 04-PrivateRepo+SyncPruneSelfHeal/app1-code/Dockerfile -t argocd-basics-to-production .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 argocd-basics-to-production
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Python
EasyPrerequisites
β οΈ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
pip install -r 04-PrivateRepo+SyncPruneSelfHeal/app1-code/requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
python <μ€νν νμΌλͺ
>.py # READMEμμ μ νν μ€ν νμΌλͺ
μ νμΈνμΈμ
Runs the Python script (or module).
If it runs without errors and prints output in the terminal, it worked.
// repository documentation
Was this content helpful?
(0 ratings)
