melange
This module has been generated via dagger init and serves as a reference tobasic module structure as you get started with Dagger.
Two functions have been pre-created. You can modify, delete, or add to them,
as needed. They demonstrate usage of arguments and return types using simple
echo and grep commands. The functions can be called from the dagger CLI or
from one of the SDKs.
The first line in this comment block is a short description line and the
rest is a long description with more detail on the module's purpose or usage,
if appropriate. All modules should have a short description.
Installation
dagger install github.com/opopops/daggerverse/melange@v1.3.5
Entrypoint
Return Type
Melange !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
image | String ! | "cgr.dev/chainguard/wolfi-base:latest" | Melange image |
version | String | null | No description provided |
registryUsername | String | null | No description provided |
registryPassword | Secret | null | No description provided |
user | String | "0" | No description provided |
container | Container | null | No description provided |
signingKey | File | null | No description provided |
publicKey | File | null | No description provided |
Example
func (m *myModule) example(image string) *Melange {
return dag.
Melange(image)
}
Types
Melange 🔗
image() 🔗
Melange image
Return Type
String !
Example
func (m *myModule) example(ctx context.Context, image string) string {
return dag.
Melange(image).
Image(ctx)
}
version() 🔗
Return Type
String
Example
func (m *myModule) example(ctx context.Context, image string) string {
return dag.
Melange(image).
Version(ctx)
}
registryUsername() 🔗
Return Type
String
Example
func (m *myModule) example(ctx context.Context, image string) string {
return dag.
Melange(image).
RegistryUsername(ctx)
}
registryPassword() 🔗
Return Type
Secret
Example
func (m *myModule) example(image string) *Secret {
return dag.
Melange(image).
RegistryPassword()
}
user() 🔗
Return Type
String
Example
func (m *myModule) example(ctx context.Context, image string) string {
return dag.
Melange(image).
User(ctx)
}
build() 🔗
Build a package from a YAML configuration file
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
config | File ! | - | Config file |
version | String | null | No description provided |
sourceDir | Directory | null | No description provided |
signingKey | File | null | No description provided |
arch | String | null | No description provided |
Example
func (m *myModule) example(image string, config *File) *Directory {
return dag.
Melange(image).
Build(config)
}
bump() 🔗
Update a Melange YAML file to reflect a new package version
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
config | File ! | - | Config file |
version | String ! | - | Version to bump to |
Example
func (m *myModule) example(image string, config *File, version string) *File {
return dag.
Melange(image).
Bump(config, version)
}
container() 🔗
Returns container
Return Type
Container !
Example
func (m *myModule) example(image string) *Container {
return dag.
Melange(image).
Container()
}
keygen() 🔗
Generate a key for package signing
Return Type
Directory !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
keySize | Integer ! | 4096 | the size of the prime to calculate |
Example
func (m *myModule) example(image string, keySize int) *Directory {
return dag.
Melange(image).
Keygen(keySize)
}
publicKey() 🔗
Return the generated public key
Return Type
File !
Example
func (m *myModule) example(image string) *File {
return dag.
Melange(image).
PublicKey()
}
signingKey() 🔗
Return the generated signing key
Return Type
File !
Example
func (m *myModule) example(image string) *File {
return dag.
Melange(image).
SigningKey()
}
withBuild() 🔗
Build a package from a YAML configuration file (for chaining)
Return Type
Melange !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
config | File ! | - | Config file |
version | String | null | No description provided |
signingKey | File | null | No description provided |
arch | String | null | No description provided |
Example
func (m *myModule) example(image string, config *File) *Melange {
return dag.
Melange(image).
WithBuild(config)
}
withBump() 🔗
Update a Melange YAML file to reflect a new package version for chaining
Return Type
Melange !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
config | File ! | - | Config file |
version | String ! | - | Version to bump to |
Example
func (m *myModule) example(image string, config *File, version string) *Melange {
return dag.
Melange(image).
WithBump(config, version)
}
withKeygen() 🔗
Generate a key for package signing for chaining
Return Type
Melange !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
keySize | Integer ! | 4096 | the size of the prime to calculate |
Example
func (m *myModule) example(image string, keySize int) *Melange {
return dag.
Melange(image).
WithKeygen(keySize)
}