mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
24 lines
531 B
Go
24 lines
531 B
Go
// Copyright 2019 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package configcobra
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"sigs.k8s.io/kustomize/cmd/config/internal/commands"
|
|
)
|
|
|
|
func GetCfg(name string) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "cfg",
|
|
Short: "Commands for reading and writing configuration",
|
|
}
|
|
|
|
cmd.AddCommand(commands.CatCommand(name))
|
|
cmd.AddCommand(commands.CountCommand(name))
|
|
cmd.AddCommand(commands.GrepCommand(name))
|
|
cmd.AddCommand(commands.TreeCommand(name))
|
|
|
|
return cmd
|
|
}
|