{"id":28398281,"url":"https://github.com/archetypicalsoftware/vdk","last_synced_at":"2026-02-01T01:15:13.702Z","repository":{"id":293364253,"uuid":"782991861","full_name":"ArchetypicalSoftware/VDK","owner":"ArchetypicalSoftware","description":"Vega Development Kit - Tools for Development of Kubenetes based Systems","archived":false,"fork":false,"pushed_at":"2026-01-28T21:40:31.000Z","size":54915,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-01-29T12:34:59.088Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","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/ArchetypicalSoftware.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-06T16:23:39.000Z","updated_at":"2026-01-28T21:40:26.000Z","dependencies_parsed_at":"2025-05-15T01:23:27.272Z","dependency_job_id":"d854032d-a2ca-49f5-9167-dfcb03af17cd","html_url":"https://github.com/ArchetypicalSoftware/VDK","commit_stats":null,"previous_names":["archetypicalsoftware/vdk"],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/ArchetypicalSoftware/VDK","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchetypicalSoftware%2FVDK","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchetypicalSoftware%2FVDK/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchetypicalSoftware%2FVDK/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchetypicalSoftware%2FVDK/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArchetypicalSoftware","download_url":"https://codeload.github.com/ArchetypicalSoftware/VDK/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArchetypicalSoftware%2FVDK/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28963415,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T00:42:38.011Z","status":"ssl_error","status_checked_at":"2026-02-01T00:42:35.920Z","response_time":128,"last_error":"SSL_read: 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":[],"created_at":"2025-06-01T04:38:02.624Z","updated_at":"2026-02-01T01:15:13.682Z","avatar_url":"https://github.com/ArchetypicalSoftware.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vega Development Kit (VDK)\n\n**Develop Kubernetes applications locally with ease using KinD (Kubernetes in Docker).**\n\nVDK is a Command Line Interface (CLI) tool designed to help developers quickly and securely set up local Kubernetes clusters using [KinD](https://kind.sigs.k8s.io/). It simplifies the process of creating clusters with varying configurations (versions, node counts) to assist in building and testing applications for platforms like Vega.\n\n[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)\n\n## Overview\n\nBuilding and testing applications designed for Kubernetes often requires a realistic cluster environment. VDK streamlines the setup of local clusters via KinD, providing:\n\n- Single or multi-node Kubernetes clusters\n- Configurable Kubernetes versions\n- Local container registry (Zot) for image storage\n- TLS-enabled reverse proxy (nginx) for secure access\n- GitOps with Flux CD\n- Easy cluster lifecycle management\n\nThis tool is particularly useful for developers working on the Vega platform, enabling consistent and reproducible development environments.\n\n## Quick Start\n\n1. **Install Devbox:**\n\n   ```bash\n   curl -fsSL https://get.jetify.com/devbox | bash\n   ```\n\n2. **Clone and enter the repository:**\n\n   ```bash\n   git clone https://github.com/ArchetypicalSoftware/VDK.git\n   cd VDK\n   devbox shell\n   ```\n\n3. **Initialize the environment:**\n\n   ```bash\n   vega init\n   ```\n\n   This creates the registry, reverse proxy, and a default cluster.\n\n4. **Verify cluster access:**\n\n   ```bash\n   kubectl cluster-info --context kind-vdk\n   ```\n\n5. **When done, remove the cluster:**\n\n   ```bash\n   vega remove cluster\n   ```\n\n## Configuration\n\nIf port 443 is already in use, set a different port for the reverse proxy:\n\n```bash\nexport REVERSE_PROXY_HOST_PORT=8443\n```\n\n## Documentation\n\n| Topic | Description |\n|-------|-------------|\n| [Getting Started](./docs/installation/getting-started.md) | Installation and setup |\n| [Creating Clusters](./docs/usage/creating-clusters.md) | How to create clusters |\n| [Managing Clusters](./docs/usage/managing-clusters.md) | Cluster lifecycle management |\n| [Command Reference](./docs/usage/command-reference.md) | Complete command documentation |\n| [Troubleshooting](./docs/debugging/troubleshooting.md) | Common issues and solutions |\n\n## Contributing\n\nWe welcome contributions! Please read our guides:\n\n- [Contribution Guidelines](./docs/contribution/guidelines.md)\n- [Development Setup](./docs/contribution/development-setup.md)\n\n## License\n\nThis project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchetypicalsoftware%2Fvdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farchetypicalsoftware%2Fvdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farchetypicalsoftware%2Fvdk/lists"}