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() *http.Transport
CreateProxyTransport creates the dialer infrastructure to connect to the nodes.
func CreateServerChain(config CompletedConfig) (*aggregatorapiserver.APIAggregator, error)
CreateServerChain creates the apiservers connected via delegation.
func NewAPIServerCommand() *cobra.Command
NewAPIServerCommand creates a *cobra.Command object with default parameters
func Run(opts options.CompletedOptions, stopCh <-chan struct{}) error
Run runs the specified APIServer. This should never exit.
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.
type CompletedConfig struct {
// contains filtered or unexported fields
}
type Config struct { Options options.CompletedOptions Aggregator *aggregatorapiserver.Config ControlPlane *controlplane.Config ApiExtensions *apiextensionsapiserver.Config ExtraConfig }
func NewConfig(opts options.CompletedOptions) (*Config, error)
NewConfig creates all the resources for running kube-apiserver, but runs none of them.
func (c *Config) Complete() (CompletedConfig, error)
type ExtraConfig struct { }