...

Text file src/k8s.io/kube-aggregator/README.md

Documentation: k8s.io/kube-aggregator

     1# kube-aggregator
     2
     3Implements the [Aggregated API Servers](https://github.com/kubernetes/design-proposals-archive/blob/main/api-machinery/aggregated-api-servers.md) design proposal.
     4
     5It provides:
     6
     7* an API for registering API servers.
     8* Summaries of discovery information from all the aggregated APIs
     9* HTTP proxying of requests from clients on to specific API backends
    10
    11
    12## Purpose
    13
    14We want to divide the single monolithic API server into multiple aggregated
    15servers. Anyone should be able to write their own aggregated API server to expose APIs they want.
    16Cluster admins should be able to expose new APIs at runtime by bringing up new
    17aggregated servers.
    18
    19
    20## Compatibility
    21
    22HEAD of this repo will match HEAD of k8s.io/apiserver, k8s.io/apimachinery, and k8s.io/client-go.
    23
    24## Where does it come from?
    25
    26`kube-aggregator` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/kube-aggregator.
    27Code changes are made in that location, merged into `k8s.io/kubernetes` and later synced here.
    28

View as plain text