Documentation ¶
Overview ¶
Package app does all of the work necessary to create a Kubernetes APIServer by binding together the API, master and APIServer infrastructure. It can be configured and called directly or via the hyperkube framework.
Package app does all of the work necessary to create a Kubernetes APIServer by binding together the API, master and APIServer infrastructure. It can be configured and called directly or via the hyperkube framework.
Index ¶
- func CreateKubeAPIServerConfig(opts options.CompletedOptions) (*controlplane.Config, aggregatorapiserver.ServiceResolver, ...)
- func CreateProxyTransport() *http.Transport
- func CreateServerChain(config CompletedConfig) (*aggregatorapiserver.APIAggregator, error)
- func NewAPIServerCommand() *cobra.Command
- func Run(opts options.CompletedOptions, stopCh <-chan struct{}) error
- func SetServiceResolverForTests(resolver webhook.ServiceResolver) func()
- type CompletedConfig
- type Config
- type ExtraConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateKubeAPIServerConfig ¶ added in v1.7.0
func CreateKubeAPIServerConfig(opts options.CompletedOptions) ( *controlplane.Config, aggregatorapiserver.ServiceResolver, []admission.PluginInitializer, error, )
CreateKubeAPIServerConfig creates all the resources for running the API server, but runs none of them
func CreateProxyTransport ¶ added in v1.22.0
CreateProxyTransport creates the dialer infrastructure to connect to the nodes.
func CreateServerChain ¶ added in v1.8.0
func CreateServerChain(config CompletedConfig) (*aggregatorapiserver.APIAggregator, error)
CreateServerChain creates the apiservers connected via delegation.
func NewAPIServerCommand ¶ added in v1.1.1
NewAPIServerCommand creates a *cobra.Command object with default parameters
func Run ¶ added in v1.2.0
func Run(opts options.CompletedOptions, stopCh <-chan struct{}) error
Run runs the specified APIServer. This should never exit.
func SetServiceResolverForTests ¶ added in v1.26.0
func SetServiceResolverForTests(resolver webhook.ServiceResolver) func()
SetServiceResolverForTests allows the service resolver to be overridden during tests. Tests using this function must run serially as this function is not safe to call concurrently with server start.
Types ¶
type CompletedConfig ¶ added in v1.28.0
type CompletedConfig struct {
// contains filtered or unexported fields
}
type Config ¶ added in v1.28.0
type Config struct { Options options.CompletedOptions Aggregator *aggregatorapiserver.Config ControlPlane *controlplane.Config ApiExtensions *apiextensionsapiserver.Config ExtraConfig }
func NewConfig ¶ added in v1.28.0
func NewConfig(opts options.CompletedOptions) (*Config, error)
NewConfig creates all the resources for running kube-apiserver, but runs none of them.
func (*Config) Complete ¶ added in v1.28.0
func (c *Config) Complete() (CompletedConfig, error)
type ExtraConfig ¶ added in v1.28.0
type ExtraConfig struct { }