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/dev.go
+12-19Lines changed: 12 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,6 @@ type DevCmd struct {
34
34
35
35
SkipPushbool
36
36
SkipPushLocalKubernetesbool
37
-
Openbool
38
37
39
38
Dependency []string
40
39
SkipDependency []string
@@ -47,18 +46,16 @@ type DevCmd struct {
47
46
ForceDeploybool
48
47
SkipDeploybool
49
48
50
-
UIbool
51
49
UIPortint
52
50
53
51
Terminalbool
54
52
WorkingDirectorystring
55
53
Pipelinestring
56
54
57
-
Syncbool
58
-
Portforwardingbool
59
-
60
-
Waitbool
61
-
Timeoutint
55
+
DisableUIbool
56
+
DisableOpenbool
57
+
DisableSyncbool
58
+
DisablePortForwardingbool
62
59
63
60
configLoader loader.ConfigLoader
64
61
log log.Logger
@@ -114,20 +111,17 @@ Open terminal instead of logs:
114
111
devCmd.Flags().BoolVar(&cmd.SkipPush, "skip-push", false, "Skips image pushing, useful for minikube deployment")
115
112
devCmd.Flags().BoolVar(&cmd.SkipPushLocalKubernetes, "skip-push-local-kube", true, "Skips image pushing, if a local kubernetes environment is detected")
0 commit comments