{"id":28484246,"url":"https://github.com/morningstarxcdcode/k3sultrastarter","last_synced_at":"2026-05-04T10:36:07.105Z","repository":{"id":294862893,"uuid":"988270654","full_name":"morningstarxcdcode/K3sUltraStarter","owner":"morningstarxcdcode","description":"K3sUltraStarter is a lightweight Kubernetes setup project featuring a sample React frontend and FastAPI backend. It provides easy deployment, management, and validation of a full-stack app on Kubernetes, streamlining development and testing workflows.","archived":false,"fork":false,"pushed_at":"2025-06-29T03:59:38.000Z","size":850,"stargazers_count":1,"open_issues_count":13,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-29T04:34:03.364Z","etag":null,"topics":["css","html","javascript","physics","shell","typrescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/morningstarxcdcode.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,"zenodo":null}},"created_at":"2025-05-22T09:55:21.000Z","updated_at":"2025-06-14T07:25:11.000Z","dependencies_parsed_at":"2025-06-29T04:27:25.396Z","dependency_job_id":"0b507935-558c-4ebf-a5df-86a715d1c302","html_url":"https://github.com/morningstarxcdcode/K3sUltraStarter","commit_stats":null,"previous_names":["morningstarxcdcode/k3sultrastarter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/morningstarxcdcode/K3sUltraStarter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morningstarxcdcode%2FK3sUltraStarter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morningstarxcdcode%2FK3sUltraStarter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morningstarxcdcode%2FK3sUltraStarter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morningstarxcdcode%2FK3sUltraStarter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/morningstarxcdcode","download_url":"https://codeload.github.com/morningstarxcdcode/K3sUltraStarter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/morningstarxcdcode%2FK3sUltraStarter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262663319,"owners_count":23345032,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["css","html","javascript","physics","shell","typrescript"],"created_at":"2025-06-07T22:06:37.472Z","updated_at":"2026-05-04T10:36:07.063Z","avatar_url":"https://github.com/morningstarxcdcode.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# K3sUltraStarter\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://media.giphy.com/media/l0MYt5jPR6QX5pnqM/giphy.gif\" alt=\"Happy Thursday 22 Animation\" width=\"300\"/\u003e\n\u003c/p\u003e\n\nK3sUltraStarter is a lightweight Kubernetes starter project designed to help developers quickly set up a Kubernetes environment with a sample full-stack application. It includes a React frontend and a FastAPI backend, along with Kubernetes manifests and deployment scripts to streamline your development and deployment workflow.\n\n## Why Use K3sUltraStarter?\n\n- **Quick Kubernetes Setup:** Get a minimal yet functional Kubernetes environment up and running fast.\n- **Full-Stack Sample App:** Explore a practical example with a React frontend and FastAPI backend.\n- **Deployment Ready:** Includes Kubernetes manifests, Helm charts, and deployment scripts.\n- **Extensible:** Easily customize and extend the sample app and Kubernetes setup to fit your needs.\n- **Learning Resource:** Great for developers new to Kubernetes, React, or FastAPI to learn by example.\n\n## Features\n\n- React frontend with modern tooling and testing setup.\n- FastAPI backend with REST API endpoints and integration tests.\n- Kubernetes manifests for ingress, storage, deployment, and services.\n- CI/CD workflow configured with GitHub Actions.\n- Installation and uninstall scripts for easy environment management.\n\n## Getting Started\n\n### Prerequisites\n\n- Docker\n- Kubernetes cluster (e.g., k3s, minikube, or any cloud provider)\n- kubectl CLI configured to access your cluster\n- Node.js and npm/yarn for frontend development\n- Python 3.8+ for backend development\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/morningstarxcdcode/K3sUltraStarter.git\n   cd K3sUltraStarter\n   ```\n\n2. Deploy Kubernetes manifests:\n\n   ```bash\n   kubectl apply -f K3sUltraStarter/k8s-manifests/\n   ```\n\n3. Build and run the backend:\n\n   ```bash\n   cd K3sUltraStarter/sample-app/backend\n   pip install -r requirements.txt\n   uvicorn main:app --reload\n   ```\n\n4. Build and run the frontend:\n\n   ```bash\n   cd ../frontend\n   npm install\n   npm run dev\n   ```\n\n### Running Tests\n\n- Backend tests:\n\n  ```bash\n  cd K3sUltraStarter/sample-app/backend\n  pytest\n  ```\n\n- Frontend tests:\n\n  ```bash\n  cd K3sUltraStarter/sample-app/frontend\n  npm test\n  ```\n\n## Project Structure\n\n```\n.\n├── K3sUltraStarter/            # Main project directory\n│   ├── k8s-manifests/          # Kubernetes manifests for deployment\n│   ├── sample-app/\n│   │   ├── backend/            # FastAPI backend source and tests\n│   │   └── frontend/           # React frontend source and tests\n│   ├── docs/                   # Project documentation\n│   ├── install-scripts/        # Scripts to install/uninstall environment\n│   ├── tests/                  # Additional test scripts\n│   ├── .github/                # GitHub workflows and CI/CD\n│   ├── course/                 # Course materials\n│   ├── landing-page/           # Landing page files\n│   ├── Makefile                # Build and deployment helper commands\n│   └── README.md               # Project documentation README\n├── cli/                       # CLI scripts\n├── public/                    # Public assets\n├── src/                       # Source code for frontend app\n├── README.md                  # This file\n├── package.json               # Frontend package manifest\n├── package-lock.json          # Frontend package lock\n├── tsconfig.json              # TypeScript config\n└── vite.config.ts             # Vite config file\n```\n└── vite.config.ts             # Vite config file\n\n## Contributing\n\nContributions are welcome! Please open issues or submit pull requests for improvements or bug fixes.\n\n## License\n\nThis project is licensed under the MIT License.\n\n---\n\nFor detailed documentation, visit the [docs folder](K3sUltraStarter/docs/README.md).\n\nHappy Kubernetes journey!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorningstarxcdcode%2Fk3sultrastarter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmorningstarxcdcode%2Fk3sultrastarter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmorningstarxcdcode%2Fk3sultrastarter/lists"}