{"id":20863896,"url":"https://github.com/eziodevio/gitops-argocd-app","last_synced_at":"2026-05-20T01:31:46.057Z","repository":{"id":237922908,"uuid":"795497117","full_name":"EzioDEVio/GitOps-ArgoCD-App","owner":"EzioDEVio","description":"contains the source code and Kubernetes deployment configurations for a simple Node.js application. This project demonstrates a GitOps workflow using ArgoCD to manage deployments automatically in a Kubernetes cluster.","archived":false,"fork":false,"pushed_at":"2024-10-28T14:18:13.000Z","size":160,"stargazers_count":1,"open_issues_count":4,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-30T08:41:23.712Z","etag":null,"topics":["argo-cd","gitops","kubernetes-deployment","nodejs"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EzioDEVio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-03T12:12:12.000Z","updated_at":"2024-11-07T02:14:58.000Z","dependencies_parsed_at":"2024-05-03T16:24:22.050Z","dependency_job_id":"b989fe4d-1746-469b-b805-e1be39e5b11a","html_url":"https://github.com/EzioDEVio/GitOps-ArgoCD-App","commit_stats":null,"previous_names":["eziodevio/gitops-argocd-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EzioDEVio/GitOps-ArgoCD-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EzioDEVio%2FGitOps-ArgoCD-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EzioDEVio%2FGitOps-ArgoCD-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EzioDEVio%2FGitOps-ArgoCD-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EzioDEVio%2FGitOps-ArgoCD-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EzioDEVio","download_url":"https://codeload.github.com/EzioDEVio/GitOps-ArgoCD-App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EzioDEVio%2FGitOps-ArgoCD-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33241123,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T15:49:41.270Z","status":"ssl_error","status_checked_at":"2026-05-19T15:49:22.917Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["argo-cd","gitops","kubernetes-deployment","nodejs"],"created_at":"2024-11-18T05:34:06.955Z","updated_at":"2026-05-20T01:31:41.038Z","avatar_url":"https://github.com/EzioDEVio.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build and Push Docker image](https://github.com/EzioDEVio/GitOps-ArgoCD-App/actions/workflows/build.yml/badge.svg)](https://github.com/EzioDEVio/GitOps-ArgoCD-App/actions/workflows/build.yml)\n# Node.js Application Deployment with ArgoCD and GitOps 🚀\n\nThis repository contains the source code and Kubernetes deployment configurations for a simple Node.js application. This project demonstrates a GitOps workflow using ArgoCD to manage deployments automatically in a Kubernetes cluster.\n\n## 📋 Overview\n\nThe Node.js application is a simple web server that is containerized with Docker and deployed to a Kubernetes cluster. The deployment process is managed through ArgoCD, which continuously monitors this repository for changes and applies them to the cluster based on the GitOps principles.\n\n## 🛠️ Prerequisites\n\nBefore you start, ensure you have the following installed:\n- Docker\n- Kubernetes\n- kubectl\n- ArgoCD CLI\n\n## 🖥️ Local Development\n\nTo run the Node.js application locally, follow these steps:\n\n1. **Clone the repository**:\n   ```bash\n   git clone https://github.com/your-username/your-repo.git\n   cd your-repo\n   ```\n\n2. **Install dependencies**:\n   ```bash\n   npm install\n   ```\n\n3. **Start the application**:\n   ```bash\n   npm start\n   ```\n\n   This will start the Node.js server on `http://localhost:3000`.\n\n## 🐳 Dockerization\n\nThe application is Dockerized with a Dockerfile in the root of the repository. To build the Docker image, run:\n\n```bash\ndocker build -t your-username/your-app:latest .\n```\n\nTo run the application using Docker:\n\n```bash\ndocker run -p 3000:3000 your-username/your-app:latest\n```\n\n## 🚢 Deployment to Kubernetes\n\nThe Kubernetes manifests in the `deployments/` directory define the necessary resources for deploying this application to a Kubernetes cluster.\n\n1. **Applying Kubernetes Manifests Manually** (not recommended for GitOps workflow):\n\n   ```bash\n   kubectl apply -f deployments/\n   ```\n\n2. **Using ArgoCD**:\n\n   - Set up ArgoCD in your cluster.\n   - Create an application in ArgoCD that tracks this repository.\n   - Make changes to the manifests or Docker image, push them to your repository, and watch ArgoCD automatically synchronize the changes.\n\n## 🔍 Monitoring with ArgoCD\n\nYou can monitor and manage the application through the ArgoCD dashboard:\n\n1. **Access the Dashboard**:\n   Forward the ArgoCD server port to your local machine:\n\n   ```bash\n   kubectl port-forward svc/argocd-server -n argocd 8080:443\n   ```\n\n   Then visit `https://localhost:8080` in your browser.\n\n2. **Login Details**:\n   Use the default username `admin` and get the password using:\n\n   ```bash\n   kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath=\"{.data.password}\" | base64 --decode; echo\n   ```\n\n3. **View the Application Status**:\n   Check the sync status, health, and more in the ArgoCD dashboard.\n\n## 🤝 Contributing\n\nContributions are welcome! Feel free to open pull requests or issues to improve the application or deployment configurations.\n\n## 📖 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n\n### Additional Notes\n\n- **Customization**: You may need to replace placeholders (like `your-username/your-repo`) with actual values relevant to your project.\n- **Repository Links**: Adjust links to match the actual URLs where your code and Docker images are hosted.\n- **ArgoCD Configuration Details**: This README assumes ArgoCD is already configured and operational within the cluster. If this is not the case, you might need to include setup details or refer to official ArgoCD documentation for initial setup instructions.\n\nThis README.md provides a comprehensive guide that not only helps users understand how to get the application running but also how to manage deployments through a GitOps workflow using ArgoCD.\n\n-**The End\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feziodevio%2Fgitops-argocd-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feziodevio%2Fgitops-argocd-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feziodevio%2Fgitops-argocd-app/lists"}