Dagger
Search

harbor-cli

No long description provided.

Installation

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

Entrypoint

Return Type
HarborCli
Example
dagger -m github.com/bishal7679/harbor-cli@3b55852607adf41ea67d4084a6b56dff5dfe3242 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@3b55852607adf41ea67d4084a6b56dff5dfe3242 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@3b55852607adf41ea67d4084a6b56dff5dfe3242 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@3b55852607adf41ea67d4084a6b56dff5dfe3242 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@3b55852607adf41ea67d4084a6b56dff5dfe3242 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@3b55852607adf41ea67d4084a6b56dff5dfe3242 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@3b55852607adf41ea67d4084a6b56dff5dfe3242 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@3b55852607adf41ea67d4084a6b56dff5dfe3242 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
regUsernameString !-No description provided
regPasswordSecret !-No description provided
privateKeySecret !-No description provided
passwordSecret !-No description provided
Example
dagger -m github.com/bishal7679/harbor-cli@3b55852607adf41ea67d4084a6b56dff5dfe3242 call \
 docker-publish --directory-arg DIR_PATH --reg-username string --reg-password env:MYSECRET --private-key env:MYSECRET --password env:MYSECRET
func (m *myModule) example(ctx context.Context, directoryArg *Directory, regUsername string, regPassword *Secret, privateKey *Secret, password *Secret) string  {
	return dag.
			HarborCli().
			DockerPublish(ctx, directoryArg, regUsername, regPassword, privateKey, password)
}
@function
async def example(directory_arg: dagger.Directory, reg_username: str, reg_password: dagger.Secret, private_key: dagger.Secret, password: dagger.Secret) -> str:
	return await (
		dag.harbor_cli()
		.docker_publish(directory_arg, reg_username, reg_password, private_key, password)
	)
@func()
async example(directoryArg: Directory, regUsername: string, regPassword: Secret, privateKey: Secret, password: Secret): Promise<string> {
	return dag
		.harborCli()
		.dockerPublish(directoryArg, regUsername, regPassword, privateKey, password)
}