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@94e3481fdede22018fdf80c09670f56e071cdf62

Entrypoint

Return Type
FirestartrConfig !
Arguments
NameTypeDefault ValueDescription
dotFirestartrDirectory !-The path to the values directory, where the helm values are stored
Example
func (m *myModule) example(dotFirestartr *Directory) *FirestartrConfig  {
	return dag.
			FirestartrConfig(dotFirestartr)
}

Types

FirestartrConfig 🔗

apps() 🔗

Return Type
[FirestartrConfigFirestartrApp ! ] !
Example
func (m *myModule) example(dotFirestartr *Directory) []*FirestartrConfigFirestartrApp  {
	return dag.
			FirestartrConfig(dotFirestartr).
			Apps()
}

registries() 🔗

Return Type
[FirestartrConfigRegistry ! ] !
Example
func (m *myModule) example(dotFirestartr *Directory) []*FirestartrConfigRegistry  {
	return dag.
			FirestartrConfig(dotFirestartr).
			Registries()
}

platforms() 🔗

Return Type
[FirestartrConfigPlatform ! ] !
Example
func (m *myModule) example(dotFirestartr *Directory) []*FirestartrConfigPlatform  {
	return dag.
			FirestartrConfig(dotFirestartr).
			Platforms()
}

dotFirestartrDir() 🔗

Return Type
Directory !
Example
func (m *myModule) example(dotFirestartr *Directory) *Directory  {
	return dag.
			FirestartrConfig(dotFirestartr).
			DotFirestartrDir()
}

findPlatformByName() 🔗

Return Type
FirestartrConfigPlatform !
Arguments
NameTypeDefault ValueDescription
nameString !-No description provided
Example
func (m *myModule) 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
func (m *myModule) example(ctx context.Context, name string) string  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			PlatformType(ctx)
}

name() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, name string) string  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			Name(ctx)
}

tenants() 🔗

Return Type
[String ! ] !
Example
func (m *myModule) example(ctx context.Context, name string) []string  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			Tenants(ctx)
}

envs() 🔗

Return Type
[String ! ] !
Example
func (m *myModule) example(ctx context.Context, name string) []string  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			Envs(ctx)
}

allowedClaims() 🔗

Return Type
[FirestartrConfigAllowedClaim ! ] !
Example
func (m *myModule) example(name string) []*FirestartrConfigAllowedClaim  {
	return dag.
			FirestartrConfig().
			FindPlatformByName(name).
			AllowedClaims()
}

FirestartrConfigFirestartrApp 🔗

name() 🔗

Return Type
String !
Example
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

services() 🔗

Return Type
[FirestartrConfigFirestartrService ! ] !
Example
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

registry() 🔗

Return Type
String !
Example
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

isDefault() 🔗

Return Type
Boolean !
Example
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

basePaths() 🔗

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

FirestartrConfigAllowedClaim 🔗

resourceTypes() 🔗

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

providers() 🔗

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

backend() 🔗

Return Type
String !
Example
Function FirestartrConfigAllowedClaim.backend 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

serviceNames() 🔗

Return Type
[String ! ] !
Example
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

charts() 🔗

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