From 28477648a7485e74486fbb960c69ba4b9c40b188 Mon Sep 17 00:00:00 2001 From: srikantpanda Date: Sun, 15 Mar 2026 12:20:53 +0530 Subject: [PATCH 1/2] fix: make health_checks optional in service deployment module health_checks is not required by the application/2.0 helm chart template. The template guards probe generation with hasKey checks and uses default values throughout - missing health_checks simply results in no probes configured, which is a valid deployment state. Co-Authored-By: Claude Sonnet 4.6 --- modules/service/deployment/0.1/facets.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/service/deployment/0.1/facets.yaml b/modules/service/deployment/0.1/facets.yaml index 9915f36b..2ef29a9c 100644 --- a/modules/service/deployment/0.1/facets.yaml +++ b/modules/service/deployment/0.1/facets.yaml @@ -846,7 +846,6 @@ spec: required: - ports - size - - health_checks x-ui-order: - ports - metrics From 8213b6fa90cc6915915328803a3543a10d5cf3ec Mon Sep 17 00:00:00 2001 From: srikantpanda Date: Mon, 16 Mar 2026 14:59:10 +0530 Subject: [PATCH 2/2] removed health_checks from required block --- modules/service/statefulset/0.1/facets.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/service/statefulset/0.1/facets.yaml b/modules/service/statefulset/0.1/facets.yaml index 0c04fe49..84b1efce 100644 --- a/modules/service/statefulset/0.1/facets.yaml +++ b/modules/service/statefulset/0.1/facets.yaml @@ -858,7 +858,6 @@ spec: required: - ports - size - - health_checks x-ui-order: - ports - metrics