Documentation ¶
Index ¶
- Variables
- func NewCmdStepPost(commonOpts *opts.CommonOptions) *cobra.Command
- func NewCmdStepPostBuild(commonOpts *opts.CommonOptions) *cobra.Command
- func NewCmdStepPostInstall(commonOpts *opts.CommonOptions) *cobra.Command
- func NewCmdStepPostRun(commonOpts *opts.CommonOptions) *cobra.Command
- type StepPostBuildOptions
- type StepPostInstallOptions
- type StepPostInstallResults
- type StepPostOptions
- type StepPostRunOptions
Constants ¶
This section is empty.
Variables ¶
var ( StepPostBuildLong = templates.LongDesc(` This pipeline step performs post build actions such as CVE analysis `) StepPostBuildExample = templates.Examples(` jx step post build `) )
var ( StepPostRunLong = templates.LongDesc(` This pipeline step executes any post build actions added during Pipeline execution `) StepPostRunExample = templates.Examples(` jx step post run `) )
Functions ¶
func NewCmdStepPost ¶
func NewCmdStepPost(commonOpts *opts.CommonOptions) *cobra.Command
NewCmdStep Steps a command object for the "step" command
func NewCmdStepPostBuild ¶
func NewCmdStepPostBuild(commonOpts *opts.CommonOptions) *cobra.Command
func NewCmdStepPostInstall ¶
func NewCmdStepPostInstall(commonOpts *opts.CommonOptions) *cobra.Command
NewCmdStepPostInstall creates the command object
func NewCmdStepPostRun ¶
func NewCmdStepPostRun(commonOpts *opts.CommonOptions) *cobra.Command
NewCmdStep Steps a command object for the "step" command
Types ¶
type StepPostBuildOptions ¶
type StepPostBuildOptions struct { step.StepOptions FullImageName string OutputFile string }
StepPostBuildOptions contains the command line flags
func (*StepPostBuildOptions) Run ¶
func (o *StepPostBuildOptions) Run() error
type StepPostInstallOptions ¶
type StepPostInstallOptions struct { step.StepOptions EnvJobCredentials string Results StepPostInstallResults }
StepPostInstallOptions contains the command line flags
func (*StepPostInstallOptions) Run ¶
func (o *StepPostInstallOptions) Run() (err error)
Run implements this command
type StepPostInstallResults ¶
type StepPostInstallResults struct {
GitProviders map[string]gits.GitProvider
}
StepPostInstallResults contains the command outputs mostly for testing purposes
type StepPostOptions ¶
type StepPostOptions struct { *opts.CommonOptions DisableImport bool OutDir string }
GetOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of referencing the cmd.Flags()
type StepPostRunOptions ¶
type StepPostRunOptions struct { step.StepOptions DisableImport bool OutDir string }
GetOptions is the start of the data required to perform the operation. As new fields are added, add them here instead of referencing the cmd.Flags()
func (*StepPostRunOptions) Run ¶
func (o *StepPostRunOptions) Run() (err error)
Run implements this command