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 BuildAdmissionPluginInitializers(s *options.ServerRunOptions, client internalclientset.Interface, ...) ([]admission.PluginInitializer, error)
- func BuildAuthenticator(s *options.ServerRunOptions, storageFactory serverstorage.StorageFactory, ...) (authenticator.Request, *spec.SecurityDefinitions, error)
- func BuildAuthorizer(s *options.ServerRunOptions, sharedInformers informers.SharedInformerFactory, ...) (authorizer.Authorizer, authorizer.RuleResolver, error)
- func BuildGenericConfig(s *options.ServerRunOptions, proxyTransport *http.Transport) (genericConfig *genericapiserver.Config, ...)
- func BuildStorageFactory(s *options.ServerRunOptions, apiResourceConfig *serverstorage.ResourceConfig) (*serverstorage.DefaultStorageFactory, error)
- func CreateKubeAPIServer(kubeAPIServerConfig *master.Config, ...) (*master.Master, error)
- func CreateKubeAPIServerConfig(s *options.ServerRunOptions, nodeTunneler tunneler.Tunneler, ...) (config *master.Config, sharedInformers informers.SharedInformerFactory, ...)
- func CreateNodeDialer(s *options.ServerRunOptions) (tunneler.Tunneler, *http.Transport, error)
- func CreateServerChain(runOptions *options.ServerRunOptions, stopCh <-chan struct{}) (*master.Config, *genericapiserver.GenericAPIServer, error)
- func NewAPIServerCommand() *cobra.Command
- func Run(runOptions *options.ServerRunOptions, stopCh <-chan struct{}) error
Constants ¶
This section is empty.
Variables ¶
var (
DefaultProxyDialerFn utilnet.DialFunc
)
Functions ¶
func BuildAdmissionPluginInitializers ¶
func BuildAdmissionPluginInitializers( s *options.ServerRunOptions, client internalclientset.Interface, sharedInformers informers.SharedInformerFactory, serviceResolver aggregatorapiserver.ServiceResolver, webhookAuthWrapper webhookconfig.AuthenticationInfoResolverWrapper, ) ([]admission.PluginInitializer, error)
BuildAdmissionPluginInitializers constructs the admission plugin initializer
func BuildAuthenticator ¶
func BuildAuthenticator(s *options.ServerRunOptions, storageFactory serverstorage.StorageFactory, client internalclientset.Interface, extclient clientgoclientset.Interface, sharedInformers informers.SharedInformerFactory) (authenticator.Request, *spec.SecurityDefinitions, error)
BuildAuthenticator constructs the authenticator
func BuildAuthorizer ¶
func BuildAuthorizer(s *options.ServerRunOptions, sharedInformers informers.SharedInformerFactory, versionedInformers clientgoinformers.SharedInformerFactory) (authorizer.Authorizer, authorizer.RuleResolver, error)
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, 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 CreateKubeAPIServer ¶
func CreateKubeAPIServer(kubeAPIServerConfig *master.Config, delegateAPIServer genericapiserver.DelegationTarget, sharedInformers informers.SharedInformerFactory, versionedInformers clientgoinformers.SharedInformerFactory) (*master.Master, error)
CreateKubeAPIServer creates and wires a workable kube-apiserver
func CreateKubeAPIServerConfig ¶
func CreateKubeAPIServerConfig( s *options.ServerRunOptions, nodeTunneler tunneler.Tunneler, proxyTransport *http.Transport, ) ( config *master.Config, sharedInformers informers.SharedInformerFactory, versionedInformers clientgoinformers.SharedInformerFactory, insecureServingInfo *kubeserver.InsecureServingInfo, serviceResolver aggregatorapiserver.ServiceResolver, pluginInitializers []admission.PluginInitializer, lastErr error, )
CreateKubeAPIServerConfig creates all the resources for running the API server, but runs none of them
func CreateNodeDialer ¶
CreateNodeDialer creates the dialer infrastructure to connect to the nodes.
func CreateServerChain ¶
func CreateServerChain(runOptions *options.ServerRunOptions, 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
func Run ¶
func Run(runOptions *options.ServerRunOptions, stopCh <-chan struct{}) error
Run runs the specified APIServer. This should never exit.
Types ¶
This section is empty.