Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cmd/minikube/cmd/config/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ type ViewTemplate struct {
var configViewCmd = &cobra.Command{
Use: "view",
Short: "Display values currently set in the minikube config file",
Long: "Display values currently set in the minikube config file.",
Long: `Display values currently set in the minikube config file.
The output format can be customized using the --format flag, which accepts a Go template.
The config file is typically located at "~/.minikube/config/config.json".`,
Run: func(_ *cobra.Command, _ []string) {
err := View()
if err != nil {
Expand Down
Loading