address lavalamp's comment
This commit is contained in:
parent
ac735ba960
commit
2b1e4a3b3c
|
@ -1,4 +1,3 @@
|
||||||
# Dynamic admission control configuration
|
|
||||||
|
|
||||||
## Background
|
## Background
|
||||||
|
|
||||||
|
@ -57,7 +56,9 @@ type InitializerConfiguration struct {
|
||||||
type Initializer struct {
|
type Initializer struct {
|
||||||
// Name is the identifier of the initializer. It will be added to the
|
// Name is the identifier of the initializer. It will be added to the
|
||||||
// object that needs to be initialized.
|
// object that needs to be initialized.
|
||||||
// Name should be fully qualified.
|
// Name should be fully qualified, e.g., alwayspullimages.kubernetes.io, where
|
||||||
|
// "alwayspullimages" is the name of the webhook, and kubernetes.io is the name
|
||||||
|
// of the organization.
|
||||||
// Required
|
// Required
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
|
||||||
|
@ -128,7 +129,9 @@ type ExternalAdmissionHookConfiguration struct {
|
||||||
// resources and operations it applies to.
|
// resources and operations it applies to.
|
||||||
type ExternalAdmissionHook struct {
|
type ExternalAdmissionHook struct {
|
||||||
// The name of the external admission webhook.
|
// The name of the external admission webhook.
|
||||||
// Name should be fully qualified.
|
// Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
|
||||||
|
// "imagepolicy" is the name of the webhook, and kubernetes.io is the name
|
||||||
|
// of the organization.
|
||||||
// Required.
|
// Required.
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue