{"id":39200640,"url":"https://github.com/oscarhermoso/binarylane-cloud-controller-manager","last_synced_at":"2026-03-07T05:01:55.274Z","repository":{"id":331582210,"uuid":"1060975962","full_name":"oscarhermoso/binarylane-cloud-controller-manager","owner":"oscarhermoso","description":"Kubernetes Cloud Controller Manager for Binary Lane, for reliable \u0026 affordable Australian VPS hosting","archived":false,"fork":false,"pushed_at":"2026-02-01T09:02:30.000Z","size":394,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-01T19:33:32.436Z","etag":null,"topics":["binary-lane","binarylane","cloud-controller-manager","k8s","kubernetes"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/oscarhermoso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2025-09-21T01:30:36.000Z","updated_at":"2026-02-01T09:01:53.000Z","dependencies_parsed_at":"2026-02-01T11:01:16.837Z","dependency_job_id":null,"html_url":"https://github.com/oscarhermoso/binarylane-cloud-controller-manager","commit_stats":null,"previous_names":["oscarhermoso/binarylane-cloud-controller-manager"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/oscarhermoso/binarylane-cloud-controller-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarhermoso%2Fbinarylane-cloud-controller-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarhermoso%2Fbinarylane-cloud-controller-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarhermoso%2Fbinarylane-cloud-controller-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarhermoso%2Fbinarylane-cloud-controller-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oscarhermoso","download_url":"https://codeload.github.com/oscarhermoso/binarylane-cloud-controller-manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oscarhermoso%2Fbinarylane-cloud-controller-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30208728,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T03:24:23.086Z","status":"ssl_error","status_checked_at":"2026-03-07T03:23:11.444Z","response_time":53,"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":["binary-lane","binarylane","cloud-controller-manager","k8s","kubernetes"],"created_at":"2026-01-17T22:54:35.765Z","updated_at":"2026-03-07T05:01:55.264Z","avatar_url":"https://github.com/oscarhermoso.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BinaryLane Cloud Controller Manager\n\nA Kubernetes Cloud Controller Manager implementation for BinaryLane cloud provider.\n\n## Features\n\nThis [cloud controller manager](https://kubernetes.io/docs/concepts/architecture/cloud-controller/) implements the following Kubernetes cloud provider interfaces:\n\n- **Instances Controller**: Manages node lifecycle and updates node metadata with cloud-specific information\n- **Zones Controller**: Provides availability zone information for nodes\n\n\nThe cloud controller manager automatically applies the following labels to nodes:\n\n| Label                              | Description                                                                  |\n| ---------------------------------- | ---------------------------------------------------------------------------- |\n| `binarylane.com/host`              | Physical host machine name (if running on shared infrastructure)             |\n| `node.kubernetes.io/instance-type` | Server size (e.g., `std-2vcpu`)                                              |\n| `topology.kubernetes.io/region`    | Server region (e.g., `syd`, `per`)                                           |\n| `topology.kubernetes.io/zone`      | Same as region, may update to distinguish between data centres in the future |\n\n\n## Installation\n\n### Prerequisites\n\n- A Kubernetes cluster running on BinaryLane servers\n- BinaryLane API token with appropriate permissions\n- Kubernetes 1.24+\n- Helm 3.8+ (for OCI support)\n\n### Install with Helm (Recommended)\n\n```bash\n# Create a secret with your API token\nkubectl create secret generic binarylane-api-token \\\n  --from-literal=api-token=\"YOUR_API_TOKEN\" \\\n  -n kube-system\n\n# Install the chart from GitHub Container Registry\nhelm install binarylane-ccm \\\n  oci://ghcr.io/oscarhermoso/charts/binarylane-cloud-controller-manager \\\n  --version 0.2.4 \\\n  --namespace kube-system \\\n  --set cloudControllerManager.secret.name=\"binarylane-api-token\"\n```\n\nFor more configuration options, see the [Helm chart documentation](charts/binarylane-cloud-controller-manager/README.md).\n\n### Manual Deployment with Kubernetes Manifests\n\n1. **Create a secret with your BinaryLane API token:**\n\n```bash\nkubectl create secret generic binarylane-api-token \\\n  --from-literal=api-token=YOUR_BINARYLANE_API_TOKEN \\\n  -n kube-system\n```\n\n2. **Deploy the RBAC configuration:**\n\n```bash\nkubectl apply -f https://raw.githubusercontent.com/oscarhermoso/binarylane-cloud-controller-manager/v0.2.4/deploy/kubernetes/rbac.yaml\n```\n\n3. **Deploy the cloud controller manager:**\n\n```bash\nkubectl apply -f https://raw.githubusercontent.com/oscarhermoso/binarylane-cloud-controller-manager/v0.2.4/deploy/kubernetes/deployment.yaml\n```\n\n## Configuration\n\n### Environment Variables\n\n- `BINARYLANE_API_TOKEN` (required): Your BinaryLane API token\n\n## Contributing\n\nWant to help? Check out [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, testing, and code guidelines.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foscarhermoso%2Fbinarylane-cloud-controller-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foscarhermoso%2Fbinarylane-cloud-controller-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foscarhermoso%2Fbinarylane-cloud-controller-manager/lists"}