Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func New ¶
func New(
extClientset kubernetes.Interface,
extInformers informers.SharedInformerFactory,
authz authorizer.Authorizer,
featureGates featuregate.FeatureGate,
) pluginInitializer
New creates an instance of admission plugins initializer. This constructor is public with a long param list so that callers immediately know that new information can be expected during compilation when they update a level.
Types ¶
type WantsAuthorizer ¶
type WantsAuthorizer interface {
SetAuthorizer(authorizer.Authorizer)
admission.InitializationValidator
}
WantsAuthorizer defines a function which sets Authorizer for admission plugins that need it.
type WantsExternalKubeClientSet ¶
type WantsExternalKubeClientSet interface {
SetExternalKubeClientSet(kubernetes.Interface)
admission.InitializationValidator
}
WantsExternalKubeClientSet defines a function which sets external ClientSet for admission plugins that need it
type WantsExternalKubeInformerFactory ¶
type WantsExternalKubeInformerFactory interface {
SetExternalKubeInformerFactory(informers.SharedInformerFactory)
admission.InitializationValidator
}
WantsExternalKubeInformerFactory defines a function which sets InformerFactory for admission plugins that need it
type WantsFeatures ¶ added in v0.17.0
type WantsFeatures interface {
InspectFeatureGates(featuregate.FeatureGate)
admission.InitializationValidator
}
WantsFeatureGate defines a function which passes the featureGates for inspection by an admission plugin. Admission plugins should not hold a reference to the featureGates. Instead, they should query a particular one and assign it to a simple bool in the admission plugin struct.
func (a *admissionPlugin) InspectFeatureGates(features featuregate.FeatureGate){
a.myFeatureIsOn = features.Enabled("my-feature")
}
type WantsQuotaConfiguration ¶ added in v0.20.0
type WantsQuotaConfiguration interface {
SetQuotaConfiguration(quota.Configuration)
admission.InitializationValidator
}
WantsQuotaConfiguration defines a function which sets quota configuration for admission plugins that need it.