yq
Yq runtime
Installation
dagger install github.com/Dudesons/daggerverse/yq@v0.3.0
Entrypoint
Return Type
Yq !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
image | String | "mikefarah/yq" | The image to use for yq |
version | String | "4.35.2" | The version of the image to use |
source | Directory ! | - | The source where yaml files are stored |
Example
func (m *myModule) example(source *Directory) *Yq {
return dag.
Yq(source)
}
Types
Yq 🔗
set() 🔗
Edit a yaml file following the given expression
Return Type
Yq !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
expr | String ! | - | The yq expression to execute |
yamlFilePath | String ! | - | The yaml file path to edit |
Example
func (m *myModule) example(source *Directory, expr string, yamlFilePath string) *Yq {
return dag.
Yq(source).
Set(expr, yamlFilePath)
}
get() 🔗
Fetch a value from a yaml file
Return Type
String !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
expr | String ! | - | The yq expression to execute |
yamlFilePath | String ! | - | The yaml file path to read |
Example
func (m *myModule) example(ctx context.Context, source *Directory, expr string, yamlFilePath string) string {
return dag.
Yq(source).
Get(ctx, expr, yamlFilePath)
}
withDirectory() 🔗
Override the source directory
Return Type
Yq !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
source | Directory ! | - | The source where yaml files are stored |
Example
func (m *myModule) example(source *Directory, source1 *Directory) *Yq {
return dag.
Yq(source).
WithDirectory(source1)
}
state() 🔗
Get the directory given to Yq
Return Type
Directory !
Example
func (m *myModule) example(source *Directory) *Directory {
return dag.
Yq(source).
State()
}
container() 🔗
Get the yq container
Return Type
Container !
Example
func (m *myModule) example(source *Directory) *Container {
return dag.
Yq(source).
Container()
}
shell() 🔗
Open a shell in the current container
Return Type
Container !
Example
func (m *myModule) example(source *Directory) *Container {
return dag.
Yq(source).
Shell()
}