Dagger
Search

health-check

No long description provided.

Installation

dagger install github.com/StaytunedLLP/devops/dagger-modules/health-check@a91a00bff14b56037d8057d556250d6192f9b3c5

Entrypoint

Return Type
HealthCheck
Example
dagger -m github.com/StaytunedLLP/devops/dagger-modules/health-check@a91a00bff14b56037d8057d556250d6192f9b3c5 call \
func (m *MyModule) Example() *dagger.HealthCheck  {
	return dag.
			HealthCheck()
}
@function
def example() -> dagger.HealthCheck:
	return (
		dag.health_check()
	)
@func()
example(): HealthCheck {
	return dag
		.healthCheck()
}

Types

HealthCheck 🔗

nodeChecks() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
sourceDirectory !-No description provided
nodeAuthTokenSecret !-No description provided
packagePathsString !"."No description provided
buildBoolean !falseNo description provided
testBoolean !falseNo description provided
lintBoolean !falseNo description provided
formatBoolean !falseNo description provided
verifyChromiumBidiBoolean !falseNo description provided
Example
dagger -m github.com/StaytunedLLP/devops/dagger-modules/health-check@a91a00bff14b56037d8057d556250d6192f9b3c5 call \
 node-checks --source DIR_PATH --node-auth-token env:MYSECRET --package-paths string --build boolean --test boolean --lint boolean --format boolean --verify-chromium-bidi boolean
func (m *MyModule) Example(ctx context.Context, source *dagger.Directory, nodeAuthToken *dagger.Secret, packagePaths string, build bool, test bool, lint bool, format bool, verifyChromiumBidi bool) string  {
	return dag.
			HealthCheck().
			NodeChecks(ctx, source, nodeAuthToken, packagePaths, build, test, lint, format, verifyChromiumBidi)
}
@function
async def example(source: dagger.Directory, node_auth_token: dagger.Secret, package_paths: str, build: bool, test: bool, lint: bool, format: bool, verify_chromium_bidi: bool) -> str:
	return await (
		dag.health_check()
		.node_checks(source, node_auth_token, package_paths, build, test, lint, format, verify_chromium_bidi)
	)
@func()
async example(source: Directory, nodeAuthToken: Secret, packagePaths: string, build: boolean, test: boolean, lint: boolean, format: boolean, verifyChromiumBidi: boolean): Promise<string> {
	return dag
		.healthCheck()
		.nodeChecks(source, nodeAuthToken, packagePaths, build, test, lint, format, verifyChromiumBidi)
}