mirror of
https://github.com/kubernetes/kubectl.git
synced 2026-04-23 07:07:26 -04:00
59 lines
1.9 KiB
Go
59 lines
1.9 KiB
Go
/*
|
|
Copyright 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 kuberc
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"k8s.io/cli-runtime/pkg/genericiooptions"
|
|
cmdutil "k8s.io/kubectl/pkg/cmd/util"
|
|
"k8s.io/kubectl/pkg/util/i18n"
|
|
"k8s.io/kubectl/pkg/util/templates"
|
|
)
|
|
|
|
var (
|
|
kubercLong = templates.LongDesc(i18n.T(`
|
|
Manage user preferences (kuberc) file.
|
|
|
|
The kuberc file allows you to customize your kubectl experience.`))
|
|
|
|
kubercExample = templates.Examples(i18n.T(`
|
|
# View the current kuberc configuration
|
|
kubectl kuberc view
|
|
|
|
# Set a default value for a command flag
|
|
kubectl kuberc set --section defaults --command get --option output=wide
|
|
|
|
# Create an alias for a command
|
|
kubectl kuberc set --section aliases --name getn --command get --prependarg nodes --option output=wide`))
|
|
)
|
|
|
|
// NewCmdKubeRC creates a command object for the "kuberc" action, and adds all child commands to it.
|
|
func NewCmdKubeRC(streams genericiooptions.IOStreams) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "kuberc SUBCOMMAND",
|
|
DisableFlagsInUseLine: true,
|
|
Short: i18n.T("Manage kuberc configuration files"),
|
|
Long: kubercLong,
|
|
Example: kubercExample,
|
|
Run: cmdutil.DefaultSubCommandRun(streams.ErrOut),
|
|
}
|
|
|
|
cmd.AddCommand(NewCmdKubeRCView(streams))
|
|
cmd.AddCommand(NewCmdKubeRCSet(streams))
|
|
|
|
return cmd
|
|
}
|