interlink
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/dciangot/daggerverse/interlink@12a5c6d97bfbe9ec99afefa9f0f59aeabfdc555a
Entrypoint
Return Type
Interlink !
Example
dagger -m github.com/dciangot/daggerverse/interlink@12a5c6d97bfbe9ec99afefa9f0f59aeabfdc555a call \
func (m *myModule) example() *Interlink {
return dag.
Interlink()
}
@function
def example() -> dag.Interlink:
return (
dag.interlink()
)
@func()
example(): Interlink {
return dag
.interlink()
}
Types
Interlink 🔗
interlinkCluster() 🔗
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
values | File ! | - | A file. |
Example
dagger -m github.com/dciangot/daggerverse/interlink@12a5c6d97bfbe9ec99afefa9f0f59aeabfdc555a call \
interlink-cluster --values file:path
func (m *myModule) example(values *File) *Container {
return dag.
Interlink().
InterlinkCluster(values)
}
@function
def example(values: dagger.File) -> dagger.Container:
return (
dag.interlink()
.interlink_cluster(values)
)
@func()
example(values: File): Container {
return dag
.interlink()
.interlinkCluster(values)
}