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
-a, --app name application name the workload is a part of
30
30
--build-env "key=value" pair build environment variables represented as a "key=value" pair ("key-" to remove, flag can be used multiple times)
31
31
--debug put the workload in debug mode (--debug=false to deactivate)
32
+
--delay duration delay set to prevent premature exit before supply chain step completion when waiting/tailing (default 30s)
32
33
--dry-run print kubernetes resources to stdout rather than apply them to the cluster, messages normally on stdout will be sent to stderr
33
34
-e, --env "key=value" pair environment variables represented as a "key=value" pair ("key-" to remove, flag can be used multiple times)
34
35
-f, --file file path file path containing the description of a single workload, other flags are layered on top of this resource. Use value "-" to read from stdin
-a, --app name application name the workload is a part of
32
32
--build-env "key=value" pair build environment variables represented as a "key=value" pair ("key-" to remove, flag can be used multiple times)
33
33
--debug put the workload in debug mode (--debug=false to deactivate)
34
+
--delay duration delay set to prevent premature exit before supply chain step completion when waiting/tailing (default 30s)
34
35
--dry-run print kubernetes resources to stdout rather than apply them to the cluster, messages normally on stdout will be sent to stderr
35
36
-e, --env "key=value" pair environment variables represented as a "key=value" pair ("key-" to remove, flag can be used multiple times)
36
37
-f, --file file path file path containing the description of a single workload, other flags are layered on top of this resource. Use value "-" to read from stdin
cmd.Flags().BoolVar(&opts.DryRun, cli.StripDash(flags.DryRunFlagName), false, "print kubernetes resources to stdout rather than apply them to the cluster, messages normally on stdout will be sent to stderr")
1020
1021
cmd.Flags().BoolVarP(&opts.Yes, cli.StripDash(flags.YesFlagName), "y", false, "accept all prompts")
1022
+
cmd.Flags().DurationVar(&opts.DelayTime, cli.StripDash(flags.DelayTimeFlagName), 30*time.Second, "delay set to prevent premature exit before supply chain step completion when waiting/tailing")
0 commit comments