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.
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 ¶
- Variables
- func BuildAuthenticator(s *options.ServerRunOptions, extclient clientgoclientset.Interface, ...) (authenticator.Request, error)
- func BuildAuthorizer(s *options.ServerRunOptions, ...) (authorizer.Authorizer, authorizer.RuleResolver, error)
- func Complete(s *options.ServerRunOptions) (completedServerRunOptions, error)
- func CreateKubeAPIServer(kubeAPIServerConfig *master.Config, ...) (*master.Master, error)
- func CreateKubeAPIServerConfig(s completedServerRunOptions) (config *master.Config, ...)
- func CreateServerChain(completedOptions completedServerRunOptions, stopCh <-chan struct{}) (*master.Config, *genericapiserver.GenericAPIServer, error)
- func NewAPIServerCommand(stopCh <-chan struct{}) *cobra.Command
- func Run(completeOptions completedServerRunOptions, stopCh <-chan struct{}) error
Constants ¶
This section is empty.
Variables ¶
var (
DefaultProxyDialerFn utilnet.DialFunc
)
var StartupConfig = make(chan startupConfig, 1)
Functions ¶
func BuildAuthenticator ¶
func BuildAuthenticator(s *options.ServerRunOptions, extclient clientgoclientset.Interface, versionedInformer clientgoinformers.SharedInformerFactory) (authenticator.Request, error)
BuildAuthenticator constructs the authenticator
func BuildAuthorizer ¶
func BuildAuthorizer(s *options.ServerRunOptions, versionedInformers clientgoinformers.SharedInformerFactory) (authorizer.Authorizer, authorizer.RuleResolver, error)
BuildAuthorizer constructs the authorizer
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, admissionPostStartHook genericapiserver.PostStartHookFunc) (*master.Master, error)
CreateKubeAPIServer creates and wires a workable kube-apiserver
func CreateKubeAPIServerConfig ¶
func CreateKubeAPIServerConfig( s completedServerRunOptions, ) ( config *master.Config, insecureServingInfo *genericapiserver.DeprecatedInsecureServingInfo, 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 CreateServerChain ¶
func CreateServerChain(completedOptions completedServerRunOptions, stopCh <-chan struct{}) (*master.Config, *genericapiserver.GenericAPIServer, error)
CreateServerChain creates the apiservers connected via delegation.
func NewAPIServerCommand ¶
NewAPIServerCommand creates a *cobra.Command object with default parameters
Types ¶
This section is empty.