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/crank/beta/convert/compositionenvironment/cmd.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,10 +36,10 @@ import (
36
36
// Cmd arguments and flags for converting a Composition to use function-environment-configs.
37
37
typeCmdstruct {
38
38
// Arguments.
39
-
InputFilestring`arg:"" default:"-" help:"The Composition file to be converted. If not specified or '-', stdin will be used." optional:"" type:"path"`
39
+
InputFilestring`arg:"" default:"-" help:"The Composition file to be converted. If not specified or '-', stdin will be used." optional:"" predictor:"file" type:"path"`
40
40
41
41
// Flags.
42
-
OutputFilestring`help:"The file to write the generated Composition to. If not specified, stdout will be used." placeholder:"PATH" short:"o" type:"path"`
42
+
OutputFilestring`help:"The file to write the generated Composition to. If not specified, stdout will be used." placeholder:"PATH" predictor:"file" short:"o" type:"path"`
43
43
44
44
FunctionEnvironmentConfigRefstring`default:"function-environment-configs" help:"Name of the existing function-environment-configs Function, to be used to reference it." name:"function-environment-configs-ref"`
Copy file name to clipboardExpand all lines: cmd/crank/beta/convert/deploymentruntime/cmd.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34,10 +34,10 @@ import (
34
34
// Cmd arguments and flags for convert deployment-runtime subcommand.
35
35
typeCmdstruct {
36
36
// Arguments.
37
-
InputFilestring`arg:"" default:"-" help:"The ControllerConfig file to be Converted. If not specified or '-', stdin will be used." optional:"" type:"path"`
37
+
InputFilestring`arg:"" default:"-" help:"The ControllerConfig file to be Converted. If not specified or '-', stdin will be used." optional:"" predictor:"file" type:"path"`
38
38
39
39
// Flags.
40
-
OutputFilestring`help:"The file to write the generated DeploymentRuntimeConfig to. If not specified, stdout will be used." placeholder:"PATH" short:"o" type:"path"`
40
+
OutputFilestring`help:"The file to write the generated DeploymentRuntimeConfig to. If not specified, stdout will be used." placeholder:"PATH" predictor:"file" short:"o" type:"path"`
Copy file name to clipboardExpand all lines: cmd/crank/beta/convert/pipelinecomposition/cmd.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,10 +36,10 @@ import (
36
36
// Cmd arguments and flags for converting a patch-and-transform to a function pipeline composition.
37
37
typeCmdstruct {
38
38
// Arguments.
39
-
InputFilestring`arg:"" default:"-" help:"The Composition file to be converted. If not specified or '-', stdin will be used." optional:"" type:"path"`
39
+
InputFilestring`arg:"" default:"-" help:"The Composition file to be converted. If not specified or '-', stdin will be used." optional:"" predictor:"file" type:"path"`
40
40
41
41
// Flags.
42
-
OutputFilestring`help:"The file to write the generated Composition to. If not specified, stdout will be used." placeholder:"PATH" short:"o" type:"path"`
42
+
OutputFilestring`help:"The file to write the generated Composition to. If not specified, stdout will be used." placeholder:"PATH" predictor:"file" short:"o" type:"path"`
43
43
44
44
FunctionPatchAndTransformRefstring`default:"function-patch-and-transform" help:"Name of the existing function-patch-and-transform Function, to be used to reference it." name:"function-patch-and-transform-ref"`
45
45
FunctionEnvironmentConfigRefstring`default:"function-environment-configs" help:"Name of the existing function-environment-configs Function, to be used to reference it." name:"function-environment-configs-ref"`
Copy file name to clipboardExpand all lines: cmd/crank/beta/top/top.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ const (
52
52
// Cmd represents the top command.
53
53
typeCmdstruct {
54
54
Summarybool`help:"Adds summary header for all Crossplane pods." name:"summary" short:"s"`
55
-
Namespacestring`default:"crossplane-system" help:"Show pods from a specific namespace, defaults to crossplane-system." name:"namespace" short:"n"`
55
+
Namespacestring`default:"crossplane-system" help:"Show pods from a specific namespace, defaults to crossplane-system." name:"namespace" predictor:"namespace" short:"n"`
56
56
}
57
57
58
58
// Help returns help instructions for the top command.
ShowConnectionSecretsbool`help:"Show connection secrets in the output." name:"show-connection-secrets" short:"s"`
69
70
ShowPackageDependenciesstring`default:"unique" enum:"unique,all,none" help:"Show package dependencies in the output. One of: unique, all, none." name:"show-package-dependencies"`
0 commit comments