Skip to content

Commit

Permalink
fix: support wget healthcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
lionello committed Feb 15, 2024
1 parent 51167ad commit a42f2e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a42f2e1

Please sign in to comment.