{"id":49618353,"url":"https://github.com/datum-cloud/compute","last_synced_at":"2026-05-05T00:04:54.504Z","repository":{"id":267278114,"uuid":"890693896","full_name":"datum-cloud/compute","owner":"datum-cloud","description":"Run your things, anywhere.","archived":false,"fork":false,"pushed_at":"2026-04-27T22:10:01.000Z","size":439,"stargazers_count":0,"open_issues_count":18,"forks_count":1,"subscribers_count":9,"default_branch":"main","last_synced_at":"2026-04-28T00:14:46.297Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/datum-cloud.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-19T02:36:47.000Z","updated_at":"2026-04-09T21:52:26.000Z","dependencies_parsed_at":"2025-12-08T20:05:45.433Z","dependency_job_id":null,"html_url":"https://github.com/datum-cloud/compute","commit_stats":null,"previous_names":["datum-cloud/workload-operator","datum-cloud/compute"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/datum-cloud/compute","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datum-cloud%2Fcompute","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datum-cloud%2Fcompute/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datum-cloud%2Fcompute/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datum-cloud%2Fcompute/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/datum-cloud","download_url":"https://codeload.github.com/datum-cloud/compute/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/datum-cloud%2Fcompute/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32629705,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"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":"2026-05-05T00:04:52.177Z","updated_at":"2026-05-05T00:04:54.494Z","avatar_url":"https://github.com/datum-cloud.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Datum Compute\n\nCompute defines the APIs and core controllers for the\n`compute.datumapis.com` API group, including Workloads, WorkloadDeployments,\nand Instances.\n\nWorkload and Instance API types include references to types defined in the\n[network-services-operator][network-services-operator] project, such as Networks\nand Network Policies, in order to attach to networks or influence instance\nnetwork connectivity.\n\nCompute itself is not responsible for provisioning of resources, but\ninstead relies on infrastructure providers such as the\n[GCP Infrastructure Provider][infra-provider-gcp] to interact with vendor or\nplatform specific APIs in order to satisfy the intents defined in custom resources\n\nSee the [Workloads RFC](./docs/compute/development/rfcs/workloads/README.md) for\ndetails on the goals of this project.\n\n[network-services-operator]: https://github.com/datum-cloud/network-services-operator\n[infra-provider-gcp]: https://github.com/datum-cloud/infra-provider-gcp\n\n## Documentation\n\nDocumentation will be available at [docs.datum.net](https://docs.datum.net/)\nshortly.\n\n## Getting Started\n\n### Prerequisites\n\n- go version v1.23.0+\n- docker version 17.03+.\n- kubectl version v1.31.0+.\n- Access to a Kubernetes v1.31.0+ cluster.\n\n### To Deploy on the cluster\n\n**Build and push your image to the location specified by `IMG`:**\n\n```sh\nmake docker-build docker-push IMG=\u003csome-registry\u003e/tmp:tag\n```\n\n**NOTE:** This image ought to be published in the personal registry you specified.\nAnd it is required to have access to pull the image from the working environment.\nMake sure you have the proper permission to the registry if the above commands don’t work.\n\n**Install the CRDs into the cluster:**\n\n```sh\nmake install\n```\n\n**Deploy the Manager to the cluster with the image specified by `IMG`:**\n\n```sh\nmake deploy IMG=\u003csome-registry\u003e/tmp:tag\n```\n\n\u003e **NOTE**: If you encounter RBAC errors, you may need to grant yourself cluster-admin\nprivileges or be logged in as admin.\n\n**Create instances of your solution**\nYou can apply the samples (examples) from the config/sample:\n\n```sh\nkubectl apply -k config/samples/\n```\n\n\u003e**NOTE**: Ensure that the samples has default values to test it out.\n\n### To Uninstall\n\n**Delete the instances (CRs) from the cluster:**\n\n```sh\nkubectl delete -k config/samples/\n```\n\n**Delete the APIs(CRDs) from the cluster:**\n\n```sh\nmake uninstall\n```\n\n**UnDeploy the controller from the cluster:**\n\n```sh\nmake undeploy\n```\n\n\u003c!-- ## Contributing --\u003e\n\n**NOTE:** Run `make help` for more information on all potential `make` targets\n\nMore information can be found via the [Kubebuilder Documentation](https://book.kubebuilder.io/introduction.html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatum-cloud%2Fcompute","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdatum-cloud%2Fcompute","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdatum-cloud%2Fcompute/lists"}