Dagger
Search

yq

Yq runtime

Installation

dagger install github.com/Dudesons/daggerverse/yq@v0.3.0

Entrypoint

Return Type
Yq !
Arguments
NameTypeDefault ValueDescription
imageString "mikefarah/yq"The image to use for yq
versionString "4.35.2"The version of the image to use
sourceDirectory !-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
NameTypeDefault ValueDescription
exprString !-The yq expression to execute
yamlFilePathString !-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
NameTypeDefault ValueDescription
exprString !-The yq expression to execute
yamlFilePathString !-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
NameTypeDefault ValueDescription
sourceDirectory !-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()
}