{"id":13400620,"url":"https://github.com/kubernetes/kubernetes","last_synced_at":"2026-04-01T18:06:19.927Z","repository":{"id":17739430,"uuid":"20580498","full_name":"kubernetes/kubernetes","owner":"kubernetes","description":"Production-Grade Container Scheduling and Management","archived":false,"fork":false,"pushed_at":"2025-05-05T13:49:58.000Z","size":1367380,"stargazers_count":114885,"open_issues_count":2560,"forks_count":40509,"subscribers_count":3213,"default_branch":"master","last_synced_at":"2025-05-05T13:56:04.378Z","etag":null,"topics":["cncf","containers","go","kubernetes"],"latest_commit_sha":null,"homepage":"https://kubernetes.io","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kubernetes.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"code-of-conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-06-06T22:56:04.000Z","updated_at":"2025-05-05T13:50:40.000Z","dependencies_parsed_at":"2024-05-02T11:58:00.146Z","dependency_job_id":"ca23b808-ed5e-41b8-af9b-f384a4f68e5a","html_url":"https://github.com/kubernetes/kubernetes","commit_stats":{"total_commits":73717,"total_committers":4833,"mean_commits":"15.252845023794745","dds":0.9788515539156504,"last_synced_commit":"dfd456c567412dbc617f55282bf59f731eb61f6e"},"previous_names":["googlecloudplatform/kubernetes"],"tags_count":1160,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubernetes%2Fkubernetes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubernetes%2Fkubernetes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubernetes%2Fkubernetes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubernetes%2Fkubernetes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kubernetes","download_url":"https://codeload.github.com/kubernetes/kubernetes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253758774,"owners_count":21959653,"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":["cncf","containers","go","kubernetes"],"created_at":"2024-07-30T19:00:53.991Z","updated_at":"2025-11-12T21:32:10.511Z","avatar_url":"https://github.com/kubernetes.png","language":"Go","readme":"# Kubernetes (K8s)\n\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/569/badge)](https://bestpractices.coreinfrastructure.org/projects/569) [![Go Report Card](https://goreportcard.com/badge/github.com/kubernetes/kubernetes)](https://goreportcard.com/report/github.com/kubernetes/kubernetes) ![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/kubernetes/kubernetes?sort=semver)\n\n\u003cimg src=\"https://github.com/kubernetes/kubernetes/raw/master/logo/logo.png\" width=\"100\"\u003e\n\n----\n\nKubernetes, also known as K8s, is an open source system for managing [containerized applications]\nacross multiple hosts. It provides basic mechanisms for the deployment, maintenance,\nand scaling of applications.\n\nKubernetes builds upon a decade and a half of experience at Google running\nproduction workloads at scale using a system called [Borg],\ncombined with best-of-breed ideas and practices from the community.\n\nKubernetes is hosted by the Cloud Native Computing Foundation ([CNCF]).\nIf your company wants to help shape the evolution of\ntechnologies that are container-packaged, dynamically scheduled,\nand microservices-oriented, consider joining the CNCF.\nFor details about who's involved and how Kubernetes plays a role,\nread the CNCF [announcement].\n\n----\n\n## To start using K8s\n\nSee our documentation on [kubernetes.io].\n\nTake a free course on [Scalable Microservices with Kubernetes].\n\nTo use Kubernetes code as a library in other applications, see the [list of published components](https://git.k8s.io/kubernetes/staging/README.md).\nUse of the `k8s.io/kubernetes` module or `k8s.io/kubernetes/...` packages as libraries is not supported.\n\n## To start developing K8s\n\nThe [community repository] hosts all information about\nbuilding Kubernetes from source, how to contribute code\nand documentation, who to contact about what, etc.\n\nIf you want to build Kubernetes right away there are two options:\n\n##### You have a working [Go environment].\n\n```\ngit clone https://github.com/kubernetes/kubernetes\ncd kubernetes\nmake\n```\n\n##### You have a working [Docker environment].\n\n```\ngit clone https://github.com/kubernetes/kubernetes\ncd kubernetes\nmake quick-release\n```\n\nFor the full story, head over to the [developer's documentation].\n\n## Support\n\nIf you need support, start with the [troubleshooting guide],\nand work your way through the process that we've outlined.\n\nThat said, if you have questions, reach out to us\n[one way or another][communication].\n\n[announcement]: https://cncf.io/news/announcement/2015/07/new-cloud-native-computing-foundation-drive-alignment-among-container\n[Borg]: https://research.google.com/pubs/pub43438.html?authuser=1\n[CNCF]: https://www.cncf.io/about\n[communication]: https://git.k8s.io/community/communication\n[community repository]: https://git.k8s.io/community\n[containerized applications]: https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/\n[developer's documentation]: https://git.k8s.io/community/contributors/devel#readme\n[Docker environment]: https://docs.docker.com/engine\n[Go environment]: https://go.dev/doc/install\n[kubernetes.io]: https://kubernetes.io\n[Scalable Microservices with Kubernetes]: https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615\n[troubleshooting guide]: https://kubernetes.io/docs/tasks/debug/\n\n## Community Meetings \n\nThe [Calendar](https://www.kubernetes.dev/resources/calendar/) has the list of all the meetings in the Kubernetes community in a single location.\n\n## Adopters\n\nThe [User Case Studies](https://kubernetes.io/case-studies/) website has real-world use cases of organizations across industries that are deploying/migrating to Kubernetes.\n\n## Governance \n\nKubernetes project is governed by a framework of principles, values, policies and processes to help our community and constituents towards our shared goals.\n\nThe [Kubernetes Community](https://github.com/kubernetes/community/blob/master/governance.md) is the launching point for learning about how we organize ourselves.\n\nThe [Kubernetes Steering community repo](https://github.com/kubernetes/steering) is used by the Kubernetes Steering Committee, which oversees governance of the Kubernetes project.\n\n## Roadmap \n\nThe [Kubernetes Enhancements repo](https://github.com/kubernetes/enhancements) provides information about Kubernetes releases, as well as feature tracking and backlogs.\n","funding_links":[],"categories":["Go","Container Operations","HarmonyOS","开源类库","Kubernetes","Misc","Software Packages","軟件包","Containers","Uncategorized","Go (134)","Open source library","[Go](#go)","Official Pages","Go Tools","MCP Servers \u0026 Gateways for Autonomous Ops","软件包","DevOps Tools","kubernetes","Back-End Development","Application Recommendation","go","武器库","Projects built with Bazel","Go 工具","☁️ Cloud Platforms \u0026 Infrastructure","Programming technologies","Workload Orchestration \u0026 Scheduling"],"sub_categories":["Orchestration","Windows Manager","集群管理","Distributions","DevOps Tools","DevOps 工具","Uncategorized","Cluster Management","devops 工具","Misc","🛠️ DevOps","云原生","non-Google projects","代码分析","Tools","CI/CD and DevOps","DevOps工具"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkubernetes%2Fkubernetes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkubernetes%2Fkubernetes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkubernetes%2Fkubernetes/lists"}