From a8b15492b4ba08029ece24caf90933fd0c4ea33a Mon Sep 17 00:00:00 2001 From: xilabao Date: Wed, 4 Jan 2017 11:14:25 +0800 Subject: [PATCH] fix wrong help message for taint --- pkg/kubectl/cmd/taint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubectl/cmd/taint.go b/pkg/kubectl/cmd/taint.go index fdb1ba2ed5084..7e450c9312cb9 100644 --- a/pkg/kubectl/cmd/taint.go +++ b/pkg/kubectl/cmd/taint.go @@ -59,7 +59,7 @@ var ( * A taint consists of a key, value, and effect. As an argument here, it is expressed as key=value:effect. * The key must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to %[1]d characters. - * The value must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to %[1]d characters. + * The value must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to %[2]d characters. * The effect must be NoSchedule or PreferNoSchedule. * Currently taint can only apply to node.`)