xk6
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/xk6@9a3074edb9cb21746ea2f9dcdd018d520b47f2e6Entrypoint
Return Type
Xk6 !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| version | String | - | Version (image tag) to use from the official image repository as a base container. | 
| image | String | - | Custom image reference in "repository:tag" format to use as a base container. | 
| container | Container | - | Custom container to use as a base container. | 
Example
dagger -m github.com/sagikazarmark/daggerverse/xk6@9a3074edb9cb21746ea2f9dcdd018d520b47f2e6 call \
func (m *MyModule) Example() *dagger.Xk6  {
	return dag.
			Xk6()
}@function
def example() -> dagger.Xk6:
	return (
		dag.xk6()
	)@func()
example(): Xk6 {
	return dag
		.xk6()
}Types
Xk6 🔗
container() 🔗
Return Type
Container !Example
dagger -m github.com/sagikazarmark/daggerverse/xk6@9a3074edb9cb21746ea2f9dcdd018d520b47f2e6 call \
 containerfunc (m *MyModule) Example() *dagger.Container  {
	return dag.
			Xk6().
			Container()
}@function
def example() -> dagger.Container:
	return (
		dag.xk6()
		.container()
	)@func()
example(): Container {
	return dag
		.xk6()
		.container()
}withPlatform() 🔗
Set GOOS, GOARCH and GOARM environment variables.
Return Type
Xk6 !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| platform | String ! | - | Target platform in "[os]/[platform]/[version]" format (e.g., "darwin/arm64/v7", "windows/amd64", "linux/arm64"). | 
Example
dagger -m github.com/sagikazarmark/daggerverse/xk6@9a3074edb9cb21746ea2f9dcdd018d520b47f2e6 call \
 with-platform --platform stringfunc (m *MyModule) Example(platform string) *dagger.Xk6  {
	return dag.
			Xk6().
			WithPlatform(platform)
}@function
def example(platform: str) -> dagger.Xk6:
	return (
		dag.xk6()
		.with_platform(platform)
	)@func()
example(platform: string): Xk6 {
	return dag
		.xk6()
		.withPlatform(platform)
}build() 🔗
Build a custom k6 binary.
Return Type
File !Arguments
| Name | Type | Default Value | Description | 
|---|---|---|---|
| version | String | - | k6 version to build (default: "latest") | 
| with | [String ! ] | - | Extension to add to the k6 binary (format: <module[@version][=replacement]>) | 
| replace | [String ! ] | - | Add replacements to the go.mod file generated (format: <module=replacement>) | 
| platform | String | - | Target platform in "[os]/[platform]/[version]" format (e.g., "darwin/arm64/v7", "windows/amd64", "linux/arm64"). | 
Example
dagger -m github.com/sagikazarmark/daggerverse/xk6@9a3074edb9cb21746ea2f9dcdd018d520b47f2e6 call \
 buildfunc (m *MyModule) Example() *dagger.File  {
	return dag.
			Xk6().
			Build()
}@function
def example() -> dagger.File:
	return (
		dag.xk6()
		.build()
	)@func()
example(): File {
	return dag
		.xk6()
		.build()
}