Documentation ¶
Index ¶
- Constants
- func New(mgr manager.Manager, args Args) (*extensionswebhook.Webhook, error)
- func ReconcileWebhookConfig(ctx context.Context, c client.Client, shootNamespace string, ...) error
- func ReconcileWebhooksForAllNamespaces(ctx context.Context, c client.Client, extensionNamespace string, ...) error
- type Args
Constants ¶
View Source
const ( // WebhookName is the name of the shoot webhook. WebhookName = "shoot" // KindSystem is used for webhooks which should only apply to the to the kube-system namespace. KindSystem = "system" )
Variables ¶
This section is empty.
Functions ¶
func ReconcileWebhookConfig ¶ added in v1.48.0
func ReconcileWebhookConfig( ctx context.Context, c client.Client, shootNamespace string, extensionNamespace string, extensionName string, managedResourceName string, shootWebhookConfigs webhook.Configs, cluster *controller.Cluster, createIfNotExists bool, ) error
ReconcileWebhookConfig deploys the shoot webhook configuration, i.e., a network policy to allow the kube-apiserver to talk to the extension, and a managed resource that contains the MutatingWebhookConfiguration.
func ReconcileWebhooksForAllNamespaces ¶ added in v1.48.0
func ReconcileWebhooksForAllNamespaces( ctx context.Context, c client.Client, extensionNamespace string, extensionName string, managedResourceName string, shootNamespaceSelector map[string]string, shootWebhookConfigs webhook.Configs, ) error
ReconcileWebhooksForAllNamespaces reconciles the shoot webhooks in all shoot namespaces of the given provider type. This is necessary in case the webhook port is changed (otherwise, the network policy would only be updated again as part of the ControlPlane reconciliation which might only happen in the next 24h).
Types ¶
type Args ¶ added in v1.4.0
type Args struct { // Types is a list of resource types. Types []extensionswebhook.Type // Mutator is a mutator to be used by the admission handler. It doesn't need the shoot client. Mutator extensionswebhook.Mutator // MutatorWithShootClient is a mutator to be used by the admission handler. It needs the shoot client. MutatorWithShootClient extensionswebhook.MutatorWithShootClient // FailurePolicy is the failure policy for the webhook (defaults to Ignore). FailurePolicy *admissionregistrationv1.FailurePolicyType }
Args are arguments for creating a webhook targeting a shoot.
Click to show internal directories.
Click to hide internal directories.