From a5d02c9892707225ce41813a03686d32b3c4f2b6 Mon Sep 17 00:00:00 2001 From: Maysun J Faisal Date: Thu, 29 Jan 2026 15:34:35 -0500 Subject: [PATCH 1/2] Fix Secret ACK checkbox Assisted-by: Claude Opus 4.5 Generated-by: Cursor Signed-off-by: Maysun J Faisal --- template/template.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/template/template.yaml b/template/template.yaml index 742d02c..8f7f149 100644 --- a/template/template.yaml +++ b/template/template.yaml @@ -227,14 +227,8 @@ spec: secretsAcknowledgment: title: I confirm the secrets exist or will be created in the specified namespace type: boolean - default: false ui:widget: checkbox - dependencies: - secretsAcknowledgment: - oneOf: - - properties: - secretsAcknowledgment: - const: true + const: true # ==================== Deployment Information ==================== - title: Deployment Information From c5d95a84f5d42dcefbf6cbccf8468624cee532d2 Mon Sep 17 00:00:00 2001 From: Maysun J Faisal Date: Thu, 29 Jan 2026 15:50:27 -0500 Subject: [PATCH 2/2] Default Checkbox to False, and enforce using enum Assisted-by: Claude Opus 4.5 Generated-by: Cursor Signed-off-by: Maysun J Faisal --- template/template.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/template/template.yaml b/template/template.yaml index 8f7f149..e6df62e 100644 --- a/template/template.yaml +++ b/template/template.yaml @@ -227,8 +227,10 @@ spec: secretsAcknowledgment: title: I confirm the secrets exist or will be created in the specified namespace type: boolean + default: false ui:widget: checkbox - const: true + enum: + - true # ==================== Deployment Information ==================== - title: Deployment Information