jfrogcli
JFrog CLI is a command-line tool that allows you to interact with JFrog products,such as Artifactory and Xray.
Example (Run)
func (e *Examples) JFrogCLI_Run(ctx context.Context) (string, error) {
return dag.Jfrogcli().Install().
WithExec([]string{"jf", "--version"}).
Stdout(ctx)
}
Example (Install)
func (e *Examples) JFrogCLI_Install() *dagger.Container {
return dag.Jfrogcli().Install()
}
Example (InstallInto)
func (e *Examples) JFrogCLI_InstallInto(ctr *dagger.Container) *dagger.Container {
return dag.Jfrogcli().Install(dagger.JfrogcliInstallOpts{
Base: ctr,
})
}
Example (InstallVersion)
func (e *Examples) JFrogCLI_InstallVersion(version string) *dagger.Container {
return dag.Jfrogcli(dagger.JfrogcliOpts{
Version: version,
}).Install()
}
Installation
dagger install github.com/vbehar/daggerverse/jfrogcli@v0.2.0
Entrypoint
Return Type
Jfrogcli !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
version | String | "2.71.0" | version of the JFrog CLI to install. If empty, the latest version will be installed. |
Example
func (m *myModule) example() *Jfrogcli {
return dag.
Jfrogcli()
}
Types
Jfrogcli 🔗
Jfrogcli is a Dagger Module to install and run the JFrog CLI.
version() 🔗
Version of the JFrog CLI binary.
Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Jfrogcli().
Version(ctx)
}
getLatestVersion() 🔗
GetLatestVersion returns the latest version of the JFrog CLI.
Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string {
return dag.
Jfrogcli().
GetLatestVersion(ctx)
}
install() 🔗
Install installs the JFrog CLI into the given container.
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
base | Container | - | No description provided |
Example
func (m *myModule) example() *Container {
return dag.
Jfrogcli().
Install()
}