You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/kuba/show.go
+34-2Lines changed: 34 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@ package kuba
2
2
3
3
import (
4
4
"context"
5
+
"encoding/json"
5
6
"fmt"
6
7
"regexp"
7
8
"sort"
@@ -17,6 +18,7 @@ var (
17
18
showEnvironmentstring
18
19
showConfigFilestring
19
20
showSensitivebool
21
+
showOutputstring
20
22
)
21
23
22
24
const (
@@ -62,6 +64,7 @@ func init() {
62
64
showCmd.Flags().StringVarP(&showEnvironment, "env", "e", "default", "Environment to use (default: default). Provide without value to list available environments.")
63
65
showCmd.Flags().StringVarP(&showConfigFile, "config", "c", "", "Path to kuba.yaml configuration file")
0 commit comments