diff --git a/docs/examples/coolify/stack/pours/deployment/coolify.yaml b/docs/examples/coolify/stack/pours/deployment/coolify.yaml index 691b92a9..1bc37e9b 100644 --- a/docs/examples/coolify/stack/pours/deployment/coolify.yaml +++ b/docs/examples/coolify/stack/pours/deployment/coolify.yaml @@ -293,8 +293,8 @@ services: test: - CMD - wget - - --spider - -q + - -O- - 0.0.0.0:8123/ping timeout: 5s image: clickhouse/clickhouse-server:25.12.5 diff --git a/docs/examples/ecs/ec2/terraform/pours/deployment/module/telemetrystore.tf.json b/docs/examples/ecs/ec2/terraform/pours/deployment/module/telemetrystore.tf.json index 124fc1dc..9abb31a5 100644 --- a/docs/examples/ecs/ec2/terraform/pours/deployment/module/telemetrystore.tf.json +++ b/docs/examples/ecs/ec2/terraform/pours/deployment/module/telemetrystore.tf.json @@ -66,7 +66,7 @@ "memory": 512, "memoryReservation": 512, "healthCheck": { - "command": ["CMD-SHELL", "wget --spider -q 0.0.0.0:8123/ping || exit 1"], + "command": ["CMD-SHELL", "wget -q -O- 0.0.0.0:8123/ping || exit 1"], "interval": 30, "timeout": 5, "retries": 3, diff --git a/internal/casting/coolifycasting/templates/coolify.yaml.gotmpl b/internal/casting/coolifycasting/templates/coolify.yaml.gotmpl index 3a3d0ef9..e33546a5 100644 --- a/internal/casting/coolifycasting/templates/coolify.yaml.gotmpl +++ b/internal/casting/coolifycasting/templates/coolify.yaml.gotmpl @@ -108,8 +108,8 @@ services: test: - CMD - wget - - --spider - -q + - -O- - 0.0.0.0:8123/ping interval: 30s timeout: 5s diff --git a/internal/casting/ecsterraformcasting/templates/module/telemetrystore.tf.json.gotmpl b/internal/casting/ecsterraformcasting/templates/module/telemetrystore.tf.json.gotmpl index 9fc3e02d..7cb5d055 100644 --- a/internal/casting/ecsterraformcasting/templates/module/telemetrystore.tf.json.gotmpl +++ b/internal/casting/ecsterraformcasting/templates/module/telemetrystore.tf.json.gotmpl @@ -71,7 +71,7 @@ "memory": 512, "memoryReservation": 512, "healthCheck": { - "command": ["CMD-SHELL", "wget --spider -q 0.0.0.0:8123/ping || exit 1"], + "command": ["CMD-SHELL", "wget -q -O- 0.0.0.0:8123/ping || exit 1"], "interval": 30, "timeout": 5, "retries": 3,