mirror of
https://github.com/kubescape/kubescape.git
synced 2026-03-27 13:58:06 +00:00
46 lines
885 B
Go
46 lines
885 B
Go
package config
|
|
|
|
import (
|
|
"github.com/armosec/kubescape/v2/core/meta"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
configExample = `
|
|
# View cached configurations
|
|
kubescape config view
|
|
|
|
# Delete cached configurations
|
|
kubescape config delete
|
|
|
|
# Set cached configurations
|
|
kubescape config set --help
|
|
`
|
|
setConfigExample = `
|
|
# Set account id
|
|
kubescape config set accountID <account id>
|
|
|
|
# Set client id
|
|
kubescape config set clientID <client id>
|
|
|
|
# Set access key
|
|
kubescape config set secretKey <access key>
|
|
`
|
|
)
|
|
|
|
func GetConfigCmd(ks meta.IKubescape) *cobra.Command {
|
|
|
|
// configCmd represents the config command
|
|
configCmd := &cobra.Command{
|
|
Use: "config",
|
|
Short: "Handle cached configurations",
|
|
Example: configExample,
|
|
}
|
|
|
|
configCmd.AddCommand(getDeleteCmd(ks))
|
|
configCmd.AddCommand(getSetCmd(ks))
|
|
configCmd.AddCommand(getViewCmd(ks))
|
|
|
|
return configCmd
|
|
}
|