Dagger
Search

harbor-cli

No long description provided.

Installation

dagger install github.com/bishal7679/harbor-cli@v0.6.4

Entrypoint

Return Type
HarborCli
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
func (m *myModule) example() *HarborCli  {
	return dag.
			HarborCli()
}
@function
def example() -> dag.HarborCli:
	return (
		dag.harbor_cli()
	)
@func()
example(): HarborCli {
	return dag
		.harborCli()
}

Types

HarborCli 🔗

echo() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
stringArgString !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
 echo --string-arg string
func (m *myModule) example(ctx context.Context, stringArg string) string  {
	return dag.
			HarborCli().
			Echo(ctx, stringArg)
}
@function
async def example(string_arg: str) -> str:
	return await (
		dag.harbor_cli()
		.echo(string_arg)
	)
@func()
async example(stringArg: string): Promise<string> {
	return dag
		.harborCli()
		.echo(stringArg)
}

containerEcho() 🔗

Returns a container that echoes whatever string argument is provided

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
stringArgString !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
 container-echo --string-arg string
func (m *myModule) example(stringArg string) *Container  {
	return dag.
			HarborCli().
			ContainerEcho(stringArg)
}
@function
def example(string_arg: str) -> dagger.Container:
	return (
		dag.harbor_cli()
		.container_echo(string_arg)
	)
@func()
example(stringArg: string): Container {
	return dag
		.harborCli()
		.containerEcho(stringArg)
}

grepDir() 🔗

Returns lines that match a pattern in the files of the provided Directory

Return Type
String !
Arguments
NameTypeDefault ValueDescription
directoryArgDirectory !-No description provided
patternString !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
 grep-dir --directory-arg DIR_PATH --pattern string
func (m *myModule) example(ctx context.Context, directoryArg *Directory, pattern string) string  {
	return dag.
			HarborCli().
			GrepDir(ctx, directoryArg, pattern)
}
@function
async def example(directory_arg: dagger.Directory, pattern: str) -> str:
	return await (
		dag.harbor_cli()
		.grep_dir(directory_arg, pattern)
	)
@func()
async example(directoryArg: Directory, pattern: string): Promise<string> {
	return dag
		.harborCli()
		.grepDir(directoryArg, pattern)
}

lintCode() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
directoryArgDirectory !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
 lint-code --directory-arg DIR_PATH
func (m *myModule) example(directoryArg *Directory) *Container  {
	return dag.
			HarborCli().
			LintCode(directoryArg)
}
@function
def example(directory_arg: dagger.Directory) -> dagger.Container:
	return (
		dag.harbor_cli()
		.lint_code(directory_arg)
	)
@func()
example(directoryArg: Directory): Container {
	return dag
		.harborCli()
		.lintCode(directoryArg)
}

buildHarbor() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
directoryArgDirectory !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
 build-harbor --directory-arg DIR_PATH
func (m *myModule) example(directoryArg *Directory) *Directory  {
	return dag.
			HarborCli().
			BuildHarbor(directoryArg)
}
@function
def example(directory_arg: dagger.Directory) -> dagger.Directory:
	return (
		dag.harbor_cli()
		.build_harbor(directory_arg)
	)
@func()
example(directoryArg: Directory): Directory {
	return dag
		.harborCli()
		.buildHarbor(directoryArg)
}

pullRequest() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
directoryArgDirectory !-No description provided
githubTokenString !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
 pull-request --directory-arg DIR_PATH --github-token string
func (m *myModule) example(ctx context.Context, directoryArg *Directory, githubToken string)   {
	return dag.
			HarborCli().
			PullRequest(ctx, directoryArg, githubToken)
}
@function
async def example(directory_arg: dagger.Directory, github_token: str) -> None:
	return await (
		dag.harbor_cli()
		.pull_request(directory_arg, github_token)
	)
@func()
async example(directoryArg: Directory, githubToken: string): Promise<void> {
	return dag
		.harborCli()
		.pullRequest(directoryArg, githubToken)
}

release() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
directoryArgDirectory !-No description provided
githubTokenString !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
 release --directory-arg DIR_PATH --github-token string
func (m *myModule) example(ctx context.Context, directoryArg *Directory, githubToken string)   {
	return dag.
			HarborCli().
			Release(ctx, directoryArg, githubToken)
}
@function
async def example(directory_arg: dagger.Directory, github_token: str) -> None:
	return await (
		dag.harbor_cli()
		.release(directory_arg, github_token)
	)
@func()
async example(directoryArg: Directory, githubToken: string): Promise<void> {
	return dag
		.harborCli()
		.release(directoryArg, githubToken)
}

dockerPublish() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
directoryArgDirectory !-No description provided
cosignKeySecret !-No description provided
cosignPasswordString !-No description provided
regUsernameString !-No description provided
regPasswordString !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@99bd328ae2c81af71eb59ad248725834ff2aa25d call \
 docker-publish --directory-arg DIR_PATH --cosign-key env:MYSECRET --cosign-password string --reg-username string --reg-password string
func (m *myModule) example(ctx context.Context, directoryArg *Directory, cosignKey *Secret, cosignPassword string, regUsername string, regPassword string) string  {
	return dag.
			HarborCli().
			DockerPublish(ctx, directoryArg, cosignKey, cosignPassword, regUsername, regPassword)
}
@function
async def example(directory_arg: dagger.Directory, cosign_key: dagger.Secret, cosign_password: str, reg_username: str, reg_password: str) -> str:
	return await (
		dag.harbor_cli()
		.docker_publish(directory_arg, cosign_key, cosign_password, reg_username, reg_password)
	)
@func()
async example(directoryArg: Directory, cosignKey: Secret, cosignPassword: string, regUsername: string, regPassword: string): Promise<string> {
	return dag
		.harborCli()
		.dockerPublish(directoryArg, cosignKey, cosignPassword, regUsername, regPassword)
}