address lavalamp's comment

This commit is contained in:
Chao Xu 2017-05-22 15:25:53 -07:00
parent ac735ba960
commit 2b1e4a3b3c
1 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,3 @@
# Dynamic admission control configuration
## Background
@ -57,7 +56,9 @@ type InitializerConfiguration struct {
type Initializer struct {
// Name is the identifier of the initializer. It will be added to the
// 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
Name string `json:"name"`
@ -128,7 +129,9 @@ type ExternalAdmissionHookConfiguration struct {
// resources and operations it applies to.
type ExternalAdmissionHook struct {
// 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.
Name string `json:"name"`