summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChao Xu <xuchao@google.com>2017-05-22 15:25:53 -0700
committerChao Xu <xuchao@google.com>2017-05-22 15:25:53 -0700
commit2b1e4a3b3c6453214dff96dc2d488161b13b6fdc (patch)
tree4e7305bde8e95855fdcb8d6c74a26f0a4dcc3622
parentac735ba9607b395615a103ced5fe0555b6097c70 (diff)
address lavalamp's comment
-rw-r--r--contributors/design-proposals/dynamic-admission-control-configuration.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/contributors/design-proposals/dynamic-admission-control-configuration.md b/contributors/design-proposals/dynamic-admission-control-configuration.md
index 1a73c066..40d3f587 100644
--- a/contributors/design-proposals/dynamic-admission-control-configuration.md
+++ b/contributors/design-proposals/dynamic-admission-control-configuration.md
@@ -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"`