{"id":24994967,"url":"https://github.com/iamgp21/wsl2-microk8s-lab","last_synced_at":"2026-02-21T18:04:11.111Z","repository":{"id":274297977,"uuid":"922490814","full_name":"iamgp21/wsl2-microk8s-lab","owner":"iamgp21","description":"POC Repo to Deploy Cloud Native tools on microk8s Cluster running on WSL2","archived":false,"fork":false,"pushed_at":"2025-01-26T11:23:33.000Z","size":223,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-22T03:13:05.905Z","etag":null,"topics":["argocd","cncf","gitops","microk8s"],"latest_commit_sha":null,"homepage":"","language":"Smarty","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iamgp21.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-01-26T11:09:03.000Z","updated_at":"2025-01-27T05:39:12.000Z","dependencies_parsed_at":"2025-01-26T12:33:22.698Z","dependency_job_id":null,"html_url":"https://github.com/iamgp21/wsl2-microk8s-lab","commit_stats":null,"previous_names":["iamgp21/wsl2-microk8s-lab"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/iamgp21/wsl2-microk8s-lab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgp21%2Fwsl2-microk8s-lab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgp21%2Fwsl2-microk8s-lab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgp21%2Fwsl2-microk8s-lab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgp21%2Fwsl2-microk8s-lab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iamgp21","download_url":"https://codeload.github.com/iamgp21/wsl2-microk8s-lab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamgp21%2Fwsl2-microk8s-lab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29689644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T15:51:39.154Z","status":"ssl_error","status_checked_at":"2026-02-21T15:49:03.425Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["argocd","cncf","gitops","microk8s"],"created_at":"2025-02-04T15:25:48.634Z","updated_at":"2026-02-21T18:04:11.074Z","avatar_url":"https://github.com/iamgp21.png","language":"Smarty","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wsl2-microk8s-lab\nThis repo contains Kubernetes/Cloud native tools that will be deployed on microk8s cluster running on WSL2\n\n### Infra needs:\n\n- WSL2: wsl2 lets a windows user use a virtual linux environment on Windows Machine itself. This is pretty handy feature for quick development needs on your local machine. See [Install WSL2](https://learn.microsoft.com/en-us/windows/wsl/install) to get started.\n\n- Microk8s: Microk8s is a low-ops, lightweight upstream kubernetes solution. See [Install Microk8s](https://microk8s.io/docs/getting-started) to get started.\n\n- Github Self Hosted Repo Runner: Follow below steps to quikly Install and Configure the Runner on your wsl2 environment.\n\n*NOTE: GITHUB_PERSONAL_ACCESS_TOKEN below should have repo scope*\n\n```\n## Create a folder:\nmkdir actions-runner \u0026\u0026 cd actions-runner || exit\n\n## Download the latest runner package:\ncurl -o actions-runner-linux-x64-2.320.0.tar.gz -L https://github.com/actions/runner/releases/download/v2.320.0/actions-runner-linux-x64-2.320.0.tar.gz\n\n## Extract the installer:\ntar xzf ./actions-runner-linux-x64-2.320.0.tar.gz\n\n## get the registration token:\nTOKEN=$(curl -s  -L -X POST -H \"Accept: application/vnd.github+json\" -H \"Authorization: Bearer \u003cGITHUB_PERSONAL_ACCESS_TOKEN\u003e\" -H \"X-GitHub-Api-Version: 2022-11-28\" https://api.github.com/repos/{OWNER}/{REPO_NAME}/actions/runners/registration-token | jq '.token')\n\n## configure the runner: \n./config.sh --url https://github.com/{OWNER}/{REPO_NAME} --token $TOKEN --name \"gp_runner_01\" --no-default-labels --labels \"gp_runner_01\" --unattended\n\n## Start Self Hosted Runner as a Service:\nsudo ./svc.sh install \u003cusername\u003e\nsudo ./svc.sh start \u003cusername\u003e\n```\n\n### LoadBalancer needs:\n- MetalLB: A network LB implementation that tries to “just work” on bare metal clusters. See [Enable MetalLB Addon](https://microk8s.io/docs/addon-metallb)\n\n*NOTE: While enabling the addon make sure to provide the subnet/range of IP that falls within your local network, See below example*\n\n```\nmicrok8s enable metallb:172.30.208.2-172.30.208.5\n```\n\n### Declartive Delivery tool:\n- ArgoCD: We will use ArgoCD to deploy other tools/applications on our Microk8s Cluster see [Delivery Tool](https://github.com/iamgauravpande/wsl2-microk8s-lab/tree/main/delivery-tool#readme) for details.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamgp21%2Fwsl2-microk8s-lab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiamgp21%2Fwsl2-microk8s-lab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamgp21%2Fwsl2-microk8s-lab/lists"}