mirror of https://github.com/kubernetes/kops.git
Positional deprecation warning should go to stderr
Otherwise we break piped output with -ojson etc.
This commit is contained in:
parent
5fbc7b4103
commit
85fb99c75d
|
@ -249,10 +249,10 @@ func (c *RootCmd) clusterNameArgsAllowNoCluster(clusterName *string) func(cmd *c
|
||||||
// Everything else is an error.
|
// Everything else is an error.
|
||||||
func (c *RootCmd) ProcessArgs(args []string) error {
|
func (c *RootCmd) ProcessArgs(args []string) error {
|
||||||
if len(args) > 0 {
|
if len(args) > 0 {
|
||||||
fmt.Printf("\n")
|
fmt.Fprintf(os.Stderr, "\n")
|
||||||
fmt.Printf("\nClusterName as positional argument is deprecated and will be removed\n")
|
fmt.Fprintf(os.Stderr, "\nClusterName as positional argument is deprecated and will be removed\n")
|
||||||
fmt.Printf("Use `KOPS_FEATURE_FLAGS=PositionalClusterArg` to revert to the old behavior.")
|
fmt.Fprintf(os.Stderr, "Use `KOPS_FEATURE_FLAGS=PositionalClusterArg` to revert to the old behavior.")
|
||||||
fmt.Printf("\n")
|
fmt.Fprintf(os.Stderr, "\n")
|
||||||
}
|
}
|
||||||
if !featureflag.PositionalClusterArg.Enabled() {
|
if !featureflag.PositionalClusterArg.Enabled() {
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue