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

package admission

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

Index

Types

type Config

type Config struct {
	CloudConfigFile      string
	LoopbackClientConfig *rest.Config
	ExternalInformers    externalinformers.SharedInformerFactory
}

Config holds the configuration needed to for initialize the admission plugins

func (*Config) New

New sets up the plugins and admission start hooks needed for admission

type PluginInitializer

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

PluginInitializer is used for initialization of the Kubernetes specific admission plugins.

func NewPluginInitializer

func NewPluginInitializer(
	cloudConfig []byte,
	restMapper meta.RESTMapper,
	quotaConfiguration quota.Configuration,
) *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

type WantsCloudConfig

type WantsCloudConfig interface {
	SetCloudConfig([]byte)
}

WantsCloudConfig defines a function which sets CloudConfig 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.

Source Files

config.go initializer.go

Version
v1.24.1
Published
May 24, 2022
Platform
js/wasm
Imports
20 packages
Last checked
1 minute ago

Tools for package owners.