Update label selector message to clarify that constraints use AND operator

Kubernetes-commit: 62baa0af4c995cdf401339bfb92d6ae172fe5c6d
This commit is contained in:
ncapps 2022-01-07 17:25:17 +00:00 committed by Kubernetes Publisher
parent 2acffc93b6
commit 9f0231784c
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ func AddChunkSizeFlag(cmd *cobra.Command, value *int64) {
}
func AddLabelSelectorFlagVar(cmd *cobra.Command, p *string) {
cmd.Flags().StringVarP(p, "selector", "l", *p, "Selector (label query) to filter on, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2)")
cmd.Flags().StringVarP(p, "selector", "l", *p, "Selector (label query) to filter on, supports '=', '==', and '!='.(e.g. -l key1=value1,key2=value2). Matching objects must satisfy all of the specified label constraints.")
}
type ValidateOptions struct {