From a42f2e124cb8075da576dcabc8efcb8c78238a04 Mon Sep 17 00:00:00 2001 From: Lionello Lunesu Date: Wed, 14 Feb 2024 17:46:14 -0800 Subject: [PATCH] fix: support wget healthcheck --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 4360b58..83f4d30 100644 --- a/index.ts +++ b/index.ts @@ -683,7 +683,7 @@ export interface Secret { export interface HealthCheck { /** health check test command */ - test: ["CMD", "curl", HttpUrl]; // TODO: support NONE and curl flags + test: ["CMD", "curl" | "wget", HttpUrl]; // TODO: support NONE and curl/wget flags interval?: number; timeout?: number; retries?: number;