shuttle
No long description provided.
Installation
dagger install github.com/fluent-ci-templates/shuttle-pipeline@4297246147873e2fc50de50361c8d681a77102c1Entrypoint
Return Type
Shuttle Example
dagger -m github.com/fluent-ci-templates/shuttle-pipeline@4297246147873e2fc50de50361c8d681a77102c1 call \
func (m *MyModule) Example() *dagger.Shuttle {
return dag.
Shuttle()
}@function
def example() -> dagger.Shuttle:
return (
dag.shuttle()
)@func()
example(): Shuttle {
return dag
.shuttle()
}Types
Shuttle 🔗
deploy() 🔗
Deploy the application to Shuttle
Return Type
StringKind !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| src | Directory | - | No description provided |
| apiKey | Secret | - | No description provided |
Example
dagger -m github.com/fluent-ci-templates/shuttle-pipeline@4297246147873e2fc50de50361c8d681a77102c1 call \
deployfunc (m *MyModule) Example() {
return dag.
Shuttle().
Deploy()
}@function
def example() -> :
return (
dag.shuttle()
.deploy()
)@func()
example(): {
return dag
.shuttle()
.deploy()
}