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.

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

Functions

func BuildAdmissionPluginInitializers

BuildAdmissionPluginInitializers constructs the admission plugin initializer

func BuildAuthenticator

BuildAuthenticator constructs the authenticator

func BuildAuthorizer

BuildAuthorizer constructs the authorizer

func BuildGenericConfig

func BuildGenericConfig(
	s *options.ServerRunOptions,
	proxyTransport *http.Transport,
) (
	genericConfig *genericapiserver.Config,
	sharedInformers informers.SharedInformerFactory,
	versionedInformers clientgoinformers.SharedInformerFactory,
	insecureServingInfo *kubeserver.InsecureServingInfo,
	serviceResolver aggregatorapiserver.ServiceResolver,
	pluginInitializers []admission.PluginInitializer,
	admissionPostStartHook genericapiserver.PostStartHookFunc,
	lastErr error,
)

BuildGenericConfig takes the master server options and produces the genericapiserver.Config associated with it

func BuildStorageFactory

func BuildStorageFactory(s *options.ServerRunOptions, apiResourceConfig *serverstorage.ResourceConfig) (*serverstorage.DefaultStorageFactory, error)

BuildStorageFactory constructs the storage factory. If encryption at rest is used, it expects all supported KMS plugins to be registered in the KMS plugin registry before being called.

func Complete

func Complete(s *options.ServerRunOptions) (completedServerRunOptions, error)

Complete set default ServerRunOptions. Should be called after kube-apiserver flags parsed.

func CreateKubeAPIServer

func CreateKubeAPIServer(kubeAPIServerConfig *master.Config, delegateAPIServer genericapiserver.DelegationTarget, sharedInformers informers.SharedInformerFactory, versionedInformers clientgoinformers.SharedInformerFactory, admissionPostStartHook genericapiserver.PostStartHookFunc) (*master.Master, error)

CreateKubeAPIServer creates and wires a workable kube-apiserver

func CreateKubeAPIServerConfig

func CreateKubeAPIServerConfig(
	s completedServerRunOptions,
	nodeTunneler tunneler.Tunneler,
	proxyTransport *http.Transport,
) (
	config *master.Config,
	sharedInformers informers.SharedInformerFactory,
	versionedInformers clientgoinformers.SharedInformerFactory,
	insecureServingInfo *kubeserver.InsecureServingInfo,
	serviceResolver aggregatorapiserver.ServiceResolver,
	pluginInitializers []admission.PluginInitializer,
	admissionPostStartHook genericapiserver.PostStartHookFunc,
	lastErr error,
)

CreateKubeAPIServerConfig creates all the resources for running the API server, but runs none of them

func CreateNodeDialer

func CreateNodeDialer(s completedServerRunOptions) (tunneler.Tunneler, *http.Transport, error)

CreateNodeDialer creates the dialer infrastructure to connect to the nodes.

func CreateServerChain

func CreateServerChain(completedOptions completedServerRunOptions, stopCh <-chan struct{}) (*genericapiserver.GenericAPIServer, error)

CreateServerChain creates the apiservers connected via delegation.

func NewAPIServerCommand

func NewAPIServerCommand(stopCh <-chan struct{}) *cobra.Command

NewAPIServerCommand creates a *cobra.Command object with default parameters

func Run

func Run(completeOptions completedServerRunOptions, stopCh <-chan struct{}) error

Run runs the specified APIServer. This should never exit.

Source Files

aggregator.go apiextensions.go server.go

Directories

PathSynopsis
cmd/kube-apiserver/app/optionsPackage options contains flags and options for initializing an apiserver
cmd/kube-apiserver/app/testing
Version
v1.11.0
Published
Jun 27, 2018
Platform
js/wasm
Imports
92 packages
Last checked
33 seconds ago

Tools for package owners.