Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kubernetes/kube-aggregator
Aggregator for Kubernetes-style API servers: dynamic registration, discovery summarization, secure proxy
https://github.com/kubernetes/kube-aggregator
k8s-staging
Last synced: about 17 hours ago
JSON representation
Aggregator for Kubernetes-style API servers: dynamic registration, discovery summarization, secure proxy
- Host: GitHub
- URL: https://github.com/kubernetes/kube-aggregator
- Owner: kubernetes
- License: apache-2.0
- Created: 2017-02-14T18:59:58.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-14T02:52:09.000Z (8 days ago)
- Last Synced: 2024-12-14T09:00:08.406Z (8 days ago)
- Topics: k8s-staging
- Language: Go
- Size: 22.8 MB
- Stars: 259
- Watchers: 52
- Forks: 79
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: code-of-conduct.md
- Security: SECURITY_CONTACTS
Awesome Lists containing this project
README
# kube-aggregator
Implements the [Aggregated API Servers](https://github.com/kubernetes/design-proposals-archive/blob/main/api-machinery/aggregated-api-servers.md) design proposal.
It provides:
* an API for registering API servers.
* Summaries of discovery information from all the aggregated APIs
* HTTP proxying of requests from clients on to specific API backends## Purpose
We want to divide the single monolithic API server into multiple aggregated
servers. Anyone should be able to write their own aggregated API server to expose APIs they want.
Cluster admins should be able to expose new APIs at runtime by bringing up new
aggregated servers.## Compatibility
HEAD of this repo will match HEAD of k8s.io/apiserver, k8s.io/apimachinery, and k8s.io/client-go.
## Where does it come from?
`kube-aggregator` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/kube-aggregator.
Code changes are made in that location, merged into `k8s.io/kubernetes` and later synced here.