kubernetesk8s.io/kubernetes/pkg/kubeapiserver/admission Index | Files | Directories

package admission

import "k8s.io/kubernetes/pkg/kubeapiserver/admission"

Index

Types

type PluginInitializer

type PluginInitializer struct {
	// contains filtered or unexported fields
}

func NewPluginInitializer

func NewPluginInitializer(
	internalClient internalclientset.Interface,
	externalClient clientset.Interface,
	sharedInformers informers.SharedInformerFactory,
	authz authorizer.Authorizer,
	cloudConfig []byte,
	restMapper meta.RESTMapper,
	quotaRegistry quota.Registry,
) *PluginInitializer

NewPluginInitializer constructs new instance of PluginInitializer TODO: switch these parameters to use the builder pattern or just make them all public, this construction method is pointless boilerplate.

func (*PluginInitializer) Initialize

func (i *PluginInitializer) Initialize(plugin admission.Interface)

Initialize checks the initialization interfaces implemented by each plugin and provide the appropriate initialization data

func (*PluginInitializer) SetClientCert

func (i *PluginInitializer) SetClientCert(cert, key []byte) *PluginInitializer

SetClientCert sets the client cert & key (identity used for calling out to web hooks) which is needed by some plugins.

func (*PluginInitializer) SetProxyTransport

func (i *PluginInitializer) SetProxyTransport(proxyTransport *http.Transport) *PluginInitializer

SetProxyTransport sets the proxyTransport which is needed by some plugins.

func (*PluginInitializer) SetServiceResolver

func (i *PluginInitializer) SetServiceResolver(s ServiceResolver) *PluginInitializer

SetServiceResolver sets the service resolver which is needed by some plugins.

type ServiceResolver

type ServiceResolver interface {
	ResolveEndpoint(namespace, name string) (*url.URL, error)
}

ServiceResolver knows how to convert a service reference into an actual location.

type WantsAuthorizer

type WantsAuthorizer interface {
	SetAuthorizer(authorizer.Authorizer)
	admission.Validator
}

WantsAuthorizer defines a function which sets Authorizer for admission plugins that need it.

type WantsClientCert

type WantsClientCert interface {
	SetClientCert(cert, key []byte)
}

WantsClientCert defines a fuction that accepts a cert & key for admission plugins that need to make calls and prove their identity.

type WantsCloudConfig

type WantsCloudConfig interface {
	SetCloudConfig([]byte)
}

WantsCloudConfig defines a function which sets CloudConfig for admission plugins that need it.

type WantsExternalKubeClientSet

type WantsExternalKubeClientSet interface {
	SetExternalKubeClientSet(clientset.Interface)
	admission.Validator
}

WantsExternalKubeClientSet defines a function which sets ClientSet for admission plugins that need it

type WantsInternalKubeClientSet

type WantsInternalKubeClientSet interface {
	SetInternalKubeClientSet(internalclientset.Interface)
	admission.Validator
}

WantsInternalKubeClientSet defines a function which sets ClientSet for admission plugins that need it

type WantsInternalKubeInformerFactory

type WantsInternalKubeInformerFactory interface {
	SetInternalKubeInformerFactory(informers.SharedInformerFactory)
	admission.Validator
}

WantsInternalKubeInformerFactory defines a function which sets InformerFactory for admission plugins that need it

type WantsProxyTransport

type WantsProxyTransport interface {
	SetProxyTransport(proxyTransport *http.Transport)
}

WantsProxyTransport defines a fuction that accepts a proxy transport for admission plugins that need to make calls to pods.

type WantsQuotaRegistry

type WantsQuotaRegistry interface {
	SetQuotaRegistry(quota.Registry)
	admission.Validator
}

WantsQuotaRegistry defines a function which sets quota registry for admission plugins that need it.

type WantsRESTMapper

type WantsRESTMapper interface {
	SetRESTMapper(meta.RESTMapper)
}

WantsRESTMapper defines a function which sets RESTMapper for admission plugins that need it.

type WantsServiceResolver

type WantsServiceResolver interface {
	SetServiceResolver(ServiceResolver)
}

WantsServiceResolver defines a fuction that accepts a ServiceResolver for admission plugins that need to make calls to services.

Source Files

initializer.go

Directories

PathSynopsis
pkg/kubeapiserver/admission/configuration
pkg/kubeapiserver/admission/util
Version
v1.8.1
Published
Oct 11, 2017
Platform
js/wasm
Imports
9 packages
Last checked
1 minute ago

Tools for package owners.