38 lines
812 B
Go
38 lines
812 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/derailed/k9s/internal/color"
|
|
"github.com/derailed/k9s/internal/config"
|
|
"github.com/derailed/k9s/internal/ui"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func infoCmd() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "info",
|
|
Short: "Print configuration info",
|
|
Long: "Print configuration information",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
printInfo()
|
|
},
|
|
}
|
|
}
|
|
|
|
func printInfo() {
|
|
const fmat = "%-25s %s\n"
|
|
|
|
printLogo(color.Cyan)
|
|
printTuple(fmat, "Configuration", config.K9sConfigFile, color.Cyan)
|
|
printTuple(fmat, "Logs", config.DefaultLogFile, color.Cyan)
|
|
printTuple(fmat, "Screen Dumps", config.K9sDumpDir, color.Cyan)
|
|
}
|
|
|
|
func printLogo(c color.Paint) {
|
|
for _, l := range ui.LogoSmall {
|
|
fmt.Fprintln(out, color.Colorize(l, c))
|
|
}
|
|
fmt.Fprintln(out)
|
|
}
|