Dagger
Search

hydrate-orchestrator

No long description provided.

Installation

dagger install github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b

Entrypoint

Return Type
HydrateOrchestrator !
Arguments
NameTypeDefault ValueDescription
repoString !-Github repository name <owner>/<repo>
ghTokenSecret !-GitHub token
appString !-Application name
valuesStateDirDirectory !-State values directory (e.g. state-app-<app>#main)
wetStateDirDirectory !-Wet state directory (e.g. wet-state-app-<app>#<deployment-branch>)
authDirDirectory !-Auth directory
deploymentBranchString "deployment"Deployment branch to hydrate
eventEnum "pr"Event that triggered the workflow
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) *HydrateOrchestrator  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> dag.HydrateOrchestrator:
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): HydrateOrchestrator {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
}

Types

HydrateOrchestrator 🔗

repo() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH repo
func (m *myModule) example(ctx context.Context, repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) string  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			Repo(ctx)
}
@function
async def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> str:
	return await (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.repo()
	)
@func()
async example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): Promise<string> {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.repo()
}

ghToken() 🔗

Return Type
Secret !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH gh-token
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) *Secret  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			GhToken()
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> dagger.Secret:
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.gh_token()
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): Secret {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.ghToken()
}

app() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH app
func (m *myModule) example(ctx context.Context, repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) string  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			App(ctx)
}
@function
async def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> str:
	return await (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.app()
	)
@func()
async example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): Promise<string> {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.app()
}

valuesStateDir() 🔗

Return Type
Directory !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH values-state-dir
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) *Directory  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			ValuesStateDir()
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> dagger.Directory:
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.values_state_dir()
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): Directory {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.valuesStateDir()
}

wetStateDir() 🔗

Return Type
Directory !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH wet-state-dir
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) *Directory  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			WetStateDir()
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> dagger.Directory:
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.wet_state_dir()
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): Directory {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.wetStateDir()
}

authDir() 🔗

Return Type
Directory !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH auth-dir
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) *Directory  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			AuthDir()
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> dagger.Directory:
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.auth_dir()
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): Directory {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.authDir()
}

deploymentBranch() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH deployment-branch
func (m *myModule) example(ctx context.Context, repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) string  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			DeploymentBranch(ctx)
}
@function
async def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> str:
	return await (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.deployment_branch()
	)
@func()
async example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): Promise<string> {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.deploymentBranch()
}

event() 🔗

Return Type
Enum !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH event
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory)   {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			Event()
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> :
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.event()
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ):  {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.event()
}

getHelmAuth() 🔗

Return Type
HydrateOrchestratorHelmAuth !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH get-helm-auth
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory) *HydrateOrchestratorHelmAuth  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			GetHelmAuth()
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, ) -> dag.HydrateOrchestratorHelmAuth:
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.get_helm_auth()
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, ): HydrateOrchestratorHelmAuth {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.getHelmAuth()
}

needsHelmAuth() 🔗

Return Type
Boolean !
Arguments
NameTypeDefault ValueDescription
authDirDirectory !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH needs-helm-auth --auth-dir DIR_PATH
func (m *myModule) example(ctx context.Context, repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory, authDir1 *Directory) bool  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			NeedsHelmAuth(ctx, authDir1)
}
@function
async def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, auth_dir1: dagger.Directory) -> bool:
	return await (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.needs_helm_auth(auth_dir1)
	)
@func()
async example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, authDir1: Directory): Promise<boolean> {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.needsHelmAuth(authDir1)
}

generateDeployment() 🔗

Hydrate deployments based on the updated deployments

Return Type
File !
Arguments
NameTypeDefault ValueDescription
idInteger 0Identifier that triggered the render, this could be a PR number or a workflow run id
authorString "author"Author of the PR
deploymentTypeString !-Type of deployment
clusterString !-Cluster name
tenantString !-Tenant name
environmentString !-Environment name
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH generate-deployment --deployment-type string --cluster string --tenant string --environment string
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory, deploymentType string, cluster string, tenant string, environment string) *File  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			GenerateDeployment(deploymentType, cluster, tenant, environment)
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, deployment_type: str, cluster: str, tenant: str, environment: str) -> dagger.File:
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.generate_deployment(deployment_type, cluster, tenant, environment)
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, deploymentType: string, cluster: string, tenant: string, environment: string): File {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.generateDeployment(deploymentType, cluster, tenant, environment)
}

validateChanges() 🔗

Hydrate deployments based on the updated deployments

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
updatedDeploymentsString !-Updated deployments in JSON format
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH validate-changes --updated-deployments string
func (m *myModule) example(ctx context.Context, repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory, updatedDeployments string)   {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			ValidateChanges(ctx, updatedDeployments)
}
@function
async def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, updated_deployments: str) -> None:
	return await (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.validate_changes(updated_deployments)
	)
@func()
async example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, updatedDeployments: string): Promise<void> {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.validateChanges(updatedDeployments)
}

deploymentSummaryToFile() 🔗

Function that creates a dagger.File object from a DeploymentSummary object

Return Type
File !
Arguments
NameTypeDefault ValueDescription
deploymentSummaryHydrateOrchestratorDeploymentSummary !-No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *myModule) example(repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory, deploymentSummary *HydrateOrchestratorDeploymentSummary) *File  {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			DeploymentSummaryToFile(deploymentSummary)
}
@function
def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, deployment_summary: dag.HydrateOrchestratorDeploymentSummary) -> dagger.File:
	return (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.deployment_summary_to_file(deployment_summary)
	)
@func()
example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, deploymentSummary: HydrateOrchestratorDeploymentSummary): File {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.deploymentSummaryToFile(deploymentSummary)
}

runDispatch() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
idInteger !-Workflow run id
newImagesMatrixString "{\"images\":[]}"No description provided
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 --repo string --gh-token env:MYSECRET --app string --values-state-dir DIR_PATH --wet-state-dir DIR_PATH --auth-dir DIR_PATH run-dispatch --id integer
func (m *myModule) example(ctx context.Context, repo string, ghToken *Secret, app string, valuesStateDir *Directory, wetStateDir *Directory, authDir *Directory, id int)   {
	return dag.
			HydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir).
			RunDispatch(ctx, id)
}
@function
async def example(repo: str, gh_token: dagger.Secret, app: str, values_state_dir: dagger.Directory, wet_state_dir: dagger.Directory, auth_dir: dagger.Directory, id: int) -> None:
	return await (
		dag.hydrate_orchestrator(repo, gh_token, app, values_state_dir, wet_state_dir, auth_dir)
		.run_dispatch(id)
	)
@func()
async example(repo: string, ghToken: Secret, app: string, valuesStateDir: Directory, wetStateDir: Directory, authDir: Directory, id: number): Promise<void> {
	return dag
		.hydrateOrchestrator(repo, ghToken, app, valuesStateDir, wetStateDir, authDir)
		.runDispatch(id)
}

HydrateOrchestratorHelmAuth 🔗

username() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 get-helm-auth \
 username
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			HydrateOrchestrator().
			GetHelmAuth().
			Username(ctx)
}
@function
async def example() -> str:
	return await (
		dag.hydrate_orchestrator()
		.get_helm_auth()
		.username()
	)
@func()
async example(): Promise<string> {
	return dag
		.hydrateOrchestrator()
		.getHelmAuth()
		.username()
}

password() 🔗

Return Type
Secret !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 get-helm-auth \
 password
func (m *myModule) example() *Secret  {
	return dag.
			HydrateOrchestrator().
			GetHelmAuth().
			Password()
}
@function
def example() -> dagger.Secret:
	return (
		dag.hydrate_orchestrator()
		.get_helm_auth()
		.password()
	)
@func()
example(): Secret {
	return dag
		.hydrateOrchestrator()
		.getHelmAuth()
		.password()
}

registry() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 get-helm-auth \
 registry
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			HydrateOrchestrator().
			GetHelmAuth().
			Registry(ctx)
}
@function
async def example() -> str:
	return await (
		dag.hydrate_orchestrator()
		.get_helm_auth()
		.registry()
	)
@func()
async example(): Promise<string> {
	return dag
		.hydrateOrchestrator()
		.getHelmAuth()
		.registry()
}

needsAuth() 🔗

Return Type
Boolean !
Example
dagger -m github.com/prefapp/daggerverse/hydrate-orchestrator@ec4902885cfc88e61a933918c7149cf18bd1b59b call \
 get-helm-auth \
 needs-auth
func (m *myModule) example(ctx context.Context) bool  {
	return dag.
			HydrateOrchestrator().
			GetHelmAuth().
			NeedsAuth(ctx)
}
@function
async def example() -> bool:
	return await (
		dag.hydrate_orchestrator()
		.get_helm_auth()
		.needs_auth()
	)
@func()
async example(): Promise<boolean> {
	return dag
		.hydrateOrchestrator()
		.getHelmAuth()
		.needsAuth()
}

HydrateOrchestratorDeploymentSummary 🔗

items() 🔗

Return Type
[HydrateOrchestratorDeploymentSummaryRow ! ] !
Example
Function HydrateOrchestratorDeploymentSummary.items is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummary.items is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummary.items is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummary.items is not accessible from the hydrate-orchestrator module

deploymentSummaryToMarkdownTable() 🔗

Function that converts a DeploymentSummary object to a markdown table

Return Type
String !
Example
Function HydrateOrchestratorDeploymentSummary.deploymentSummaryToMarkdownTable is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummary.deploymentSummaryToMarkdownTable is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummary.deploymentSummaryToMarkdownTable is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummary.deploymentSummaryToMarkdownTable is not accessible from the hydrate-orchestrator module

HydrateOrchestratorDeploymentSummaryRow 🔗

deploymentPath() 🔗

Deployment path

Return Type
String !
Example
Function HydrateOrchestratorDeploymentSummaryRow.deploymentPath is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummaryRow.deploymentPath is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummaryRow.deploymentPath is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummaryRow.deploymentPath is not accessible from the hydrate-orchestrator module

status() 🔗

Status of the deployment

Return Type
String !
Example
Function HydrateOrchestratorDeploymentSummaryRow.status is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummaryRow.status is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummaryRow.status is not accessible from the hydrate-orchestrator module
Function HydrateOrchestratorDeploymentSummaryRow.status is not accessible from the hydrate-orchestrator module