Dagger
Search

registry-config

Tools interacting with an OCI registry usually have their own way to authenticate.
Helm, for example, provides a command to "login" into a registry, which stores the credentials in a file.
That is, however, not a safe way to store credentials, especially not in Dagger.
Credentials persisted in the filesystem make their way into Dagger's layer cache.

This module creates a configuration file and returns it as a Secret that can be mounted safely into a Container.

Be advised that using the tool's built-in authentication mechanism may not work with the configuration file (since it's read only).

You can read more about the topic in the readme: https://github.com/sagikazarmark/daggerverse/tree/main/registry-config#resources

Installation

dagger install github.com/sagikazarmark/daggerverse/registry-config@v0.5.0

Entrypoint

Return Type
RegistryConfig
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
func (m *myModule) example() *RegistryConfig  {
	return dag.
			RegistryConfig()
}
@function
def example() -> dag.RegistryConfig:
	return (
		dag.registry_config()
	)
@func()
example(): RegistryConfig {
	return dag
		.registryConfig()
}

Types

RegistryConfig 🔗

withRegistryAuth() 🔗

Add credentials for a registry.

Return Type
RegistryConfig !
Arguments
NameTypeDefault ValueDescription
addressString !-No description provided
usernameString !-No description provided
secretSecret !-No description provided
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 with-registry-auth --address string --username string --secret env:MYSECRET
func (m *myModule) example(address string, username string, secret *Secret) *RegistryConfig  {
	return dag.
			RegistryConfig().
			WithRegistryAuth(address, username, secret)
}
@function
def example(address: str, username: str, secret: dagger.Secret) -> dag.RegistryConfig:
	return (
		dag.registry_config()
		.with_registry_auth(address, username, secret)
	)
@func()
example(address: string, username: string, secret: Secret): RegistryConfig {
	return dag
		.registryConfig()
		.withRegistryAuth(address, username, secret)
}

withoutRegistryAuth() 🔗

Removes credentials for a registry.

Return Type
RegistryConfig !
Arguments
NameTypeDefault ValueDescription
addressString !-No description provided
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 without-registry-auth --address string
func (m *myModule) example(address string) *RegistryConfig  {
	return dag.
			RegistryConfig().
			WithoutRegistryAuth(address)
}
@function
def example(address: str) -> dag.RegistryConfig:
	return (
		dag.registry_config()
		.without_registry_auth(address)
	)
@func()
example(address: string): RegistryConfig {
	return dag
		.registryConfig()
		.withoutRegistryAuth(address)
}

secret() 🔗

Create the registry configuration.

Return Type
Secret !
Arguments
NameTypeDefault ValueDescription
nameString -Customize the name of the secret.
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 secret
func (m *myModule) example() *Secret  {
	return dag.
			RegistryConfig().
			Secret()
}
@function
def example() -> dagger.Secret:
	return (
		dag.registry_config()
		.secret()
	)
@func()
example(): Secret {
	return dag
		.registryConfig()
		.secret()
}

secretMount() 🔗

Create a SecretMount that can be used to mount the registry configuration into a container.

Return Type
RegistryConfigSecretMount !
Arguments
NameTypeDefault ValueDescription
pathString !-Path to mount the secret into (a common path is ~/.docker/config.json).
secretNameString -Name of the secret to create and mount.
skipOnEmptyBoolean -Skip mounting the secret if it's empty.
ownerString -A user:group to set for the mounted secret. The user and group can either be an ID (1000:1000) or a name (foo:bar). If the group is omitted, it defaults to the same as the user.
modeInteger -Permission given to the mounted secret (e.g., 0600). This option requires an owner to be set to be active.
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 secret-mount --path string
func (m *myModule) example(path string) *RegistryConfigSecretMount  {
	return dag.
			RegistryConfig().
			SecretMount(path)
}
@function
def example(path: str) -> dag.RegistryConfigSecretMount:
	return (
		dag.registry_config()
		.secret_mount(path)
	)
@func()
example(path: string): RegistryConfigSecretMount {
	return dag
		.registryConfig()
		.secretMount(path)
}

RegistryConfigSecretMount 🔗

path() 🔗

Path to mount the secret into (a common path is ~/.docker/config.json).

Return Type
String !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 secret-mount --path string \
 path
func (m *myModule) example(ctx context.Context, path string) string  {
	return dag.
			RegistryConfig().
			SecretMount(path).
			Path(ctx)
}
@function
async def example(path: str) -> str:
	return await (
		dag.registry_config()
		.secret_mount(path)
		.path()
	)
@func()
async example(path: string): Promise<string> {
	return dag
		.registryConfig()
		.secretMount(path)
		.path()
}

secretName() 🔗

Name of the secret to create and mount.

Return Type
String !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 secret-mount --path string \
 secret-name
func (m *myModule) example(ctx context.Context, path string) string  {
	return dag.
			RegistryConfig().
			SecretMount(path).
			SecretName(ctx)
}
@function
async def example(path: str) -> str:
	return await (
		dag.registry_config()
		.secret_mount(path)
		.secret_name()
	)
@func()
async example(path: string): Promise<string> {
	return dag
		.registryConfig()
		.secretMount(path)
		.secretName()
}

skipOnEmpty() 🔗

Skip mounting the secret if it’s empty.

Return Type
Boolean !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 secret-mount --path string \
 skip-on-empty
func (m *myModule) example(ctx context.Context, path string) bool  {
	return dag.
			RegistryConfig().
			SecretMount(path).
			SkipOnEmpty(ctx)
}
@function
async def example(path: str) -> bool:
	return await (
		dag.registry_config()
		.secret_mount(path)
		.skip_on_empty()
	)
@func()
async example(path: string): Promise<boolean> {
	return dag
		.registryConfig()
		.secretMount(path)
		.skipOnEmpty()
}

owner() 🔗

A user:group to set for the mounted secret.

Return Type
String !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 secret-mount --path string \
 owner
func (m *myModule) example(ctx context.Context, path string) string  {
	return dag.
			RegistryConfig().
			SecretMount(path).
			Owner(ctx)
}
@function
async def example(path: str) -> str:
	return await (
		dag.registry_config()
		.secret_mount(path)
		.owner()
	)
@func()
async example(path: string): Promise<string> {
	return dag
		.registryConfig()
		.secretMount(path)
		.owner()
}

mode() 🔗

Permission given to the mounted secret (e.g., 0600).

Return Type
Integer !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 secret-mount --path string \
 mode
func (m *myModule) example(ctx context.Context, path string) int  {
	return dag.
			RegistryConfig().
			SecretMount(path).
			Mode(ctx)
}
@function
async def example(path: str) -> int:
	return await (
		dag.registry_config()
		.secret_mount(path)
		.mode()
	)
@func()
async example(path: string): Promise<number> {
	return dag
		.registryConfig()
		.secretMount(path)
		.mode()
}

mount() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
containerContainer !-No description provided
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config@d814d0d7c421348f51cdda96870a05ca2aa8e96a call \
 secret-mount --path string \
 mount --container IMAGE:TAG
func (m *myModule) example(path string, container *Container) *Container  {
	return dag.
			RegistryConfig().
			SecretMount(path).
			Mount(container)
}
@function
def example(path: str, container: dagger.Container) -> dagger.Container:
	return (
		dag.registry_config()
		.secret_mount(path)
		.mount(container)
	)
@func()
example(path: string, container: Container): Container {
	return dag
		.registryConfig()
		.secretMount(path)
		.mount(container)
}