From 7188238caae27209904c378bf84a7a3cb67a9a75 Mon Sep 17 00:00:00 2001 From: Sakura <40171666+928234269@users.noreply.github.com> Date: Tue, 6 Aug 2019 03:13:40 +0800 Subject: [PATCH] fix a to an in annotation (#715) --- node/env.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/node/env.go b/node/env.go index 1dff7358a..c06ca2ab6 100755 --- a/node/env.go +++ b/node/env.go @@ -51,18 +51,18 @@ const ( // ReasonFailedToReadOptionalSecret is the reason used in events emitted when an optional secret could not be read. ReasonFailedToReadOptionalSecret = "FailedToReadOptionalSecret" - // ReasonMandatoryConfigMapNotFound is the reason used in events emitted when an mandatory configmap is not found. + // ReasonMandatoryConfigMapNotFound is the reason used in events emitted when a mandatory configmap is not found. ReasonMandatoryConfigMapNotFound = "MandatoryConfigMapNotFound" - // ReasonMandatoryConfigMapKeyNotFound is the reason used in events emitted when an mandatory configmap key is not found. + // ReasonMandatoryConfigMapKeyNotFound is the reason used in events emitted when a mandatory configmap key is not found. ReasonMandatoryConfigMapKeyNotFound = "MandatoryConfigMapKeyNotFound" - // ReasonFailedToReadMandatoryConfigMap is the reason used in events emitted when an mandatory configmap could not be read. + // ReasonFailedToReadMandatoryConfigMap is the reason used in events emitted when a mandatory configmap could not be read. ReasonFailedToReadMandatoryConfigMap = "FailedToReadMandatoryConfigMap" - // ReasonMandatorySecretNotFound is the reason used in events emitted when an mandatory secret is not found. + // ReasonMandatorySecretNotFound is the reason used in events emitted when a mandatory secret is not found. ReasonMandatorySecretNotFound = "MandatorySecretNotFound" - // ReasonMandatorySecretKeyNotFound is the reason used in events emitted when an mandatory secret key is not found. + // ReasonMandatorySecretKeyNotFound is the reason used in events emitted when a mandatory secret key is not found. ReasonMandatorySecretKeyNotFound = "MandatorySecretKeyNotFound" - // ReasonFailedToReadMandatorySecret is the reason used in events emitted when an mandatory secret could not be read. + // ReasonFailedToReadMandatorySecret is the reason used in events emitted when a mandatory secret could not be read. ReasonFailedToReadMandatorySecret = "FailedToReadMandatorySecret" // ReasonInvalidEnvironmentVariableNames is the reason used in events emitted when a configmap/secret referenced in a ".spec.containers[*].envFrom" field contains invalid environment variable names.