package app
import "k8s.io/kubernetes/cmd/kube-apiserver/app"
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, genericConfig *genericapiserver.Config, versionedInformers clientgoinformers.SharedInformerFactory, storageFactory *serverstorage.DefaultStorageFactory, ) ( *controlplane.Config, aggregatorapiserver.ServiceResolver, []admission.PluginInitializer, error, )
- func CreateServerChain(config CompletedConfig) (*aggregatorapiserver.APIAggregator, error)
- func NewAPIServerCommand() *cobra.Command
- func Run(ctx context.Context, opts options.CompletedOptions) error
- func SetServiceResolverForTests(resolver webhook.ServiceResolver) func()
- type CompletedConfig
- type Config
- func NewConfig(opts options.CompletedOptions) (*Config, error)
- func (c *Config) Complete() (CompletedConfig, error)
- type ExtraConfig
Functions ¶
func CreateKubeAPIServerConfig ¶
func CreateKubeAPIServerConfig( opts options.CompletedOptions, genericConfig *genericapiserver.Config, versionedInformers clientgoinformers.SharedInformerFactory, storageFactory *serverstorage.DefaultStorageFactory, ) ( *controlplane.Config, aggregatorapiserver.ServiceResolver, []admission.PluginInitializer, error, )
CreateKubeAPIServerConfig creates all the resources for running the API server, but runs none of them
func CreateServerChain ¶
func CreateServerChain(config CompletedConfig) (*aggregatorapiserver.APIAggregator, error)
CreateServerChain creates the apiservers connected via delegation.
func NewAPIServerCommand ¶
NewAPIServerCommand creates a *cobra.Command object with default parameters
func Run ¶
func Run(ctx context.Context, opts options.CompletedOptions) error
Run runs the specified APIServer. This should never exit.
func SetServiceResolverForTests ¶
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 ¶
type CompletedConfig struct {
// contains filtered or unexported fields
}
type Config ¶
type Config struct { Options options.CompletedOptions Aggregator *aggregatorapiserver.Config KubeAPIs *controlplane.Config ApiExtensions *apiextensionsapiserver.Config ExtraConfig }
func NewConfig ¶
func NewConfig(opts options.CompletedOptions) (*Config, error)
NewConfig creates all the resources for running kube-apiserver, but runs none of them.
func (*Config) Complete ¶
func (c *Config) Complete() (CompletedConfig, error)
type ExtraConfig ¶
type ExtraConfig struct { }
Source Files ¶
aggregator.go config.go server.go
Directories ¶
Path | Synopsis |
---|---|
cmd/kube-apiserver/app/options | Package options contains flags and options for initializing an apiserver |
cmd/kube-apiserver/app/testing |
- Version
- v1.33.0 (latest)
- Published
- Apr 23, 2025
- Platform
- linux/amd64
- Imports
- 43 packages
- Last checked
- 3 hours ago –
Tools for package owners.