io.k8s.api.admissionregistration.v1

Type members

Classlikes

final case class MutatingWebhook(name: String, sideEffects: String, clientConfig: WebhookClientConfig, admissionReviewVersions: Seq[String], timeoutSeconds: Option[Int], matchPolicy: Option[String], namespaceSelector: Option[LabelSelector], failurePolicy: Option[String], reinvocationPolicy: Option[String], rules: Option[Seq[RuleWithOperations]], objectSelector: Option[LabelSelector])

MutatingWebhook describes an admission webhook and the resources and operations it applies to.

MutatingWebhook describes an admission webhook and the resources and operations it applies to.

Source:
MutatingWebhook.scala
final case class MutatingWebhookConfiguration(metadata: Option[ObjectMeta], webhooks: Option[Seq[MutatingWebhook]]) extends KObject

MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.

MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.

Source:
MutatingWebhookConfiguration.scala

MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.

MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.

Source:
MutatingWebhookConfigurationList.scala
final case class RuleWithOperations(operations: Option[Seq[String]], apiVersions: Option[Seq[String]], scope: Option[String], apiGroups: Option[Seq[String]], resources: Option[Seq[String]])

RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.

RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.

Source:
RuleWithOperations.scala
final case class ServiceReference(name: String, namespace: String, path: Option[String], port: Option[Int])

ServiceReference holds a reference to Service.legacy.k8s.io

ServiceReference holds a reference to Service.legacy.k8s.io

Source:
ServiceReference.scala
final case class ValidatingWebhook(name: String, sideEffects: String, clientConfig: WebhookClientConfig, admissionReviewVersions: Seq[String], timeoutSeconds: Option[Int], matchPolicy: Option[String], namespaceSelector: Option[LabelSelector], failurePolicy: Option[String], rules: Option[Seq[RuleWithOperations]], objectSelector: Option[LabelSelector])

ValidatingWebhook describes an admission webhook and the resources and operations it applies to.

ValidatingWebhook describes an admission webhook and the resources and operations it applies to.

Source:
ValidatingWebhook.scala
final case class ValidatingWebhookConfiguration(metadata: Option[ObjectMeta], webhooks: Option[Seq[ValidatingWebhook]]) extends KObject

ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.

ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.

Source:
ValidatingWebhookConfiguration.scala

ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.

ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.

Source:
ValidatingWebhookConfigurationList.scala
final case class WebhookClientConfig(caBundle: Option[String], service: Option[ServiceReference], url: Option[String])

WebhookClientConfig contains the information to make a TLS connection with the webhook

WebhookClientConfig contains the information to make a TLS connection with the webhook

Source:
WebhookClientConfig.scala