2016-08-20 00:03:39 +00:00
|
|
|
/*
|
|
|
|
Copyright 2016 The Kubernetes Authors.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2017-05-25 17:36:42 +00:00
|
|
|
"io"
|
|
|
|
|
2016-08-20 00:03:39 +00:00
|
|
|
"k8s.io/kubernetes/pkg/kubectl/cmd/templates"
|
2017-07-07 04:04:11 +00:00
|
|
|
"k8s.io/kubernetes/pkg/kubectl/util/i18n"
|
2016-08-20 00:03:39 +00:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2017-01-06 20:05:08 +00:00
|
|
|
var (
|
2017-02-16 03:47:00 +00:00
|
|
|
optionsExample = templates.Examples(i18n.T(`
|
2017-01-06 20:05:08 +00:00
|
|
|
# Print flags inherited by all commands
|
2017-03-15 03:49:10 +00:00
|
|
|
kubectl options`))
|
2017-01-06 20:05:08 +00:00
|
|
|
)
|
|
|
|
|
2016-08-20 00:03:39 +00:00
|
|
|
// NewCmdOptions implements the options command
|
2017-05-25 17:36:42 +00:00
|
|
|
func NewCmdOptions(out io.Writer) *cobra.Command {
|
2016-08-20 00:03:39 +00:00
|
|
|
cmd := &cobra.Command{
|
2017-01-06 20:05:08 +00:00
|
|
|
Use: "options",
|
2017-01-25 01:00:32 +00:00
|
|
|
Short: i18n.T("Print the list of flags inherited by all commands"),
|
2017-01-06 20:05:08 +00:00
|
|
|
Long: "Print the list of flags inherited by all commands",
|
2017-02-16 03:47:00 +00:00
|
|
|
Example: optionsExample,
|
2016-08-20 00:03:39 +00:00
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
cmd.Usage()
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-05-25 17:36:42 +00:00
|
|
|
// The `options` command needs write its output to the `out` stream
|
|
|
|
// (typically stdout). Without calling SetOutput here, the Usage()
|
|
|
|
// function call will fall back to stderr.
|
|
|
|
//
|
|
|
|
// See https://github.com/kubernetes/kubernetes/pull/46394 for details.
|
|
|
|
cmd.SetOutput(out)
|
2016-08-20 00:03:39 +00:00
|
|
|
|
2017-05-25 17:36:42 +00:00
|
|
|
templates.UseOptionsTemplates(cmd)
|
2016-08-20 00:03:39 +00:00
|
|
|
return cmd
|
|
|
|
}
|