Dagger
Search

firestartr-config

This module has been generated via dagger init and serves as a reference to
basic 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/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09

Entrypoint

Return Type
FirestartrConfig !
Arguments
NameTypeDefault ValueDescription
dotFirestartrDirectory !-The path to the values directory, where the helm values are stored
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 --dot-firestartr DIR_PATH
func (m *myModule) example(dotFirestartr *Directory) *FirestartrConfig  {
	return dag.
			FirestartrConfig(dotFirestartr)
}
@function
def example(dot_firestartr: dagger.Directory) -> dag.FirestartrConfig:
	return (
		dag.firestartr_config(dot_firestartr)
	)
@func()
example(dotFirestartr: Directory): FirestartrConfig {
	return dag
		.firestartrConfig(dotFirestartr)
}

Types

FirestartrConfig 🔗

apps() 🔗

Return Type
[FirestartrConfigFirestartrApp ! ] !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 --dot-firestartr DIR_PATH apps
func (m *myModule) example(dotFirestartr *Directory) []*FirestartrConfigFirestartrApp  {
	return dag.
			FirestartrConfig(dotFirestartr).
			Apps()
}
@function
def example(dot_firestartr: dagger.Directory) -> List[dag.FirestartrConfigFirestartrApp]:
	return (
		dag.firestartr_config(dot_firestartr)
		.apps()
	)
@func()
example(dotFirestartr: Directory): FirestartrConfigFirestartrApp[] {
	return dag
		.firestartrConfig(dotFirestartr)
		.apps()
}

registries() 🔗

Return Type
[FirestartrConfigRegistry ! ] !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 --dot-firestartr DIR_PATH registries
func (m *myModule) example(dotFirestartr *Directory) []*FirestartrConfigRegistry  {
	return dag.
			FirestartrConfig(dotFirestartr).
			Registries()
}
@function
def example(dot_firestartr: dagger.Directory) -> List[dag.FirestartrConfigRegistry]:
	return (
		dag.firestartr_config(dot_firestartr)
		.registries()
	)
@func()
example(dotFirestartr: Directory): FirestartrConfigRegistry[] {
	return dag
		.firestartrConfig(dotFirestartr)
		.registries()
}

platforms() 🔗

Return Type
[FirestartrConfigPlatform ! ] !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 --dot-firestartr DIR_PATH platforms
func (m *myModule) example(dotFirestartr *Directory) []*FirestartrConfigPlatform  {
	return dag.
			FirestartrConfig(dotFirestartr).
			Platforms()
}
@function
def example(dot_firestartr: dagger.Directory) -> List[dag.FirestartrConfigPlatform]:
	return (
		dag.firestartr_config(dot_firestartr)
		.platforms()
	)
@func()
example(dotFirestartr: Directory): FirestartrConfigPlatform[] {
	return dag
		.firestartrConfig(dotFirestartr)
		.platforms()
}

dotFirestartrDir() 🔗

Return Type
Directory !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 --dot-firestartr DIR_PATH dot-firestartr-dir
func (m *myModule) example(dotFirestartr *Directory) *Directory  {
	return dag.
			FirestartrConfig(dotFirestartr).
			DotFirestartrDir()
}
@function
def example(dot_firestartr: dagger.Directory) -> dagger.Directory:
	return (
		dag.firestartr_config(dot_firestartr)
		.dot_firestartr_dir()
	)
@func()
example(dotFirestartr: Directory): Directory {
	return dag
		.firestartrConfig(dotFirestartr)
		.dotFirestartrDir()
}

findPlatformByName() 🔗

Return Type
FirestartrConfigPlatform !
Arguments
NameTypeDefault ValueDescription
nameString !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 --dot-firestartr DIR_PATH find-platform-by-name --name string
func (m *myModule) example(dotFirestartr *Directory, name string) *FirestartrConfigPlatform  {
	return dag.
			FirestartrConfig(dotFirestartr).
			FindPlatformByName(name)
}
@function
def example(dot_firestartr: dagger.Directory, name: str) -> dag.FirestartrConfigPlatform:
	return (
		dag.firestartr_config(dot_firestartr)
		.find_platform_by_name(name)
	)
@func()
example(dotFirestartr: Directory, name: string): FirestartrConfigPlatform {
	return dag
		.firestartrConfig(dotFirestartr)
		.findPlatformByName(name)
}

FirestartrConfigPlatform 🔗

platformType() 🔗

Cannot use Type as a field name, it seems to be a reserved keyword for Dagger.io

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 find-platform-by-name --name string \
 platform-type
func (m *myModule) example(ctx context.Context, name string) string  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			PlatformType(ctx)
}
@function
async def example(name: str) -> str:
	return await (
		dag.firestartr_config()
		.find_platform_by_name(name)
		.platform_type()
	)
@func()
async example(name: string): Promise<string> {
	return dag
		.firestartrConfig()
		.findPlatformByName(name)
		.platformType()
}

name() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 find-platform-by-name --name string \
 name
func (m *myModule) example(ctx context.Context, name string) string  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			Name(ctx)
}
@function
async def example(name: str) -> str:
	return await (
		dag.firestartr_config()
		.find_platform_by_name(name)
		.name()
	)
@func()
async example(name: string): Promise<string> {
	return dag
		.firestartrConfig()
		.findPlatformByName(name)
		.name()
}

tenants() 🔗

Return Type
[String ! ] !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 find-platform-by-name --name string \
 tenants
func (m *myModule) example(ctx context.Context, name string) []string  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			Tenants(ctx)
}
@function
async def example(name: str) -> List[str]:
	return await (
		dag.firestartr_config()
		.find_platform_by_name(name)
		.tenants()
	)
@func()
async example(name: string): Promise<string[]> {
	return dag
		.firestartrConfig()
		.findPlatformByName(name)
		.tenants()
}

envs() 🔗

Return Type
[String ! ] !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-config@0819d3a9b32a9e415b79b3e063c80fdad401fb09 call \
 find-platform-by-name --name string \
 envs
func (m *myModule) example(ctx context.Context, name string) []string  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			Envs(ctx)
}
@function
async def example(name: str) -> List[str]:
	return await (
		dag.firestartr_config()
		.find_platform_by_name(name)
		.envs()
	)
@func()
async example(name: string): Promise<string[]> {
	return dag
		.firestartrConfig()
		.findPlatformByName(name)
		.envs()
}

FirestartrConfigFirestartrApp 🔗

name() 🔗

Return Type
String !
Example
Function FirestartrConfigFirestartrApp.name is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.name is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.name is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.name is not accessible from the firestartr-config module

stateRepo() 🔗

Return Type
String !
Example
Function FirestartrConfigFirestartrApp.stateRepo is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.stateRepo is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.stateRepo is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.stateRepo is not accessible from the firestartr-config module

services() 🔗

Return Type
[FirestartrConfigFirestartrService ! ] !
Example
Function FirestartrConfigFirestartrApp.services is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.services is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.services is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrApp.services is not accessible from the firestartr-config module

FirestartrConfigRegistry 🔗

name() 🔗

Return Type
String !
Example
Function FirestartrConfigRegistry.name is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.name is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.name is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.name is not accessible from the firestartr-config module

registry() 🔗

Return Type
String !
Example
Function FirestartrConfigRegistry.registry is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.registry is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.registry is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.registry is not accessible from the firestartr-config module

imageTypes() 🔗

Return Type
[String ! ] !
Example
Function FirestartrConfigRegistry.imageTypes is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.imageTypes is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.imageTypes is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.imageTypes is not accessible from the firestartr-config module

isDefault() 🔗

Return Type
Boolean !
Example
Function FirestartrConfigRegistry.isDefault is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.isDefault is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.isDefault is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.isDefault is not accessible from the firestartr-config module

authStrategy() 🔗

Return Type
String !
Example
Function FirestartrConfigRegistry.authStrategy is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.authStrategy is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.authStrategy is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.authStrategy is not accessible from the firestartr-config module

basePaths() 🔗

Return Type
FirestartrConfigBasePaths !
Example
Function FirestartrConfigRegistry.basePaths is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.basePaths is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.basePaths is not accessible from the firestartr-config module
Function FirestartrConfigRegistry.basePaths is not accessible from the firestartr-config module

FirestartrConfigFirestartrService 🔗

repo() 🔗

Return Type
String !
Example
Function FirestartrConfigFirestartrService.repo is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrService.repo is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrService.repo is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrService.repo is not accessible from the firestartr-config module

serviceNames() 🔗

Return Type
[String ! ] !
Example
Function FirestartrConfigFirestartrService.serviceNames is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrService.serviceNames is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrService.serviceNames is not accessible from the firestartr-config module
Function FirestartrConfigFirestartrService.serviceNames is not accessible from the firestartr-config module

FirestartrConfigBasePaths 🔗

services() 🔗

Return Type
String !
Example
Function FirestartrConfigBasePaths.services is not accessible from the firestartr-config module
Function FirestartrConfigBasePaths.services is not accessible from the firestartr-config module
Function FirestartrConfigBasePaths.services is not accessible from the firestartr-config module
Function FirestartrConfigBasePaths.services is not accessible from the firestartr-config module

charts() 🔗

Return Type
String !
Example
Function FirestartrConfigBasePaths.charts is not accessible from the firestartr-config module
Function FirestartrConfigBasePaths.charts is not accessible from the firestartr-config module
Function FirestartrConfigBasePaths.charts is not accessible from the firestartr-config module
Function FirestartrConfigBasePaths.charts is not accessible from the firestartr-config module