-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated helm patch to include properties for eksa-packages in values.…
…schema.json (#4171)
- Loading branch information
Showing
6 changed files
with
119 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
...ager/cert-manager/helm/patches/0005-Update-values.schema.json-for-schema-validation.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
From 6cee8f83c06bcefa18e508b497ba3f46e08dee36 Mon Sep 17 00:00:00 2001 | ||
From: Prow Bot <prow@amazonaws.com> | ||
Date: Mon, 23 Dec 2024 15:51:42 -0800 | ||
Subject: [PATCH 5/5] Update values.schema.json for schema validation | ||
|
||
--- | ||
deploy/charts/cert-manager/values.schema.json | 33 +++++++++++++++++++ | ||
1 file changed, 33 insertions(+) | ||
|
||
diff --git a/deploy/charts/cert-manager/values.schema.json b/deploy/charts/cert-manager/values.schema.json | ||
index d04da90c2..e28d34045 100644 | ||
--- a/deploy/charts/cert-manager/values.schema.json | ||
+++ b/deploy/charts/cert-manager/values.schema.json | ||
@@ -3,6 +3,39 @@ | ||
"helm-values": { | ||
"additionalProperties": false, | ||
"properties": { | ||
+ "imagePullSecrets": { | ||
+ "type": "array", | ||
+ "default": [], | ||
+ "title": "The imagePullSecrets Schema", | ||
+ "items": {}, | ||
+ "examples": [ | ||
+ [] | ||
+ ] | ||
+ }, | ||
+ "defaultNamespace": { | ||
+ "type": "string", | ||
+ "default": "", | ||
+ "title": "Override default namespace of the helm chart and managed resources", | ||
+ "examples": [ | ||
+ "" | ||
+ ] | ||
+ }, | ||
+ "sourceRegistry": { | ||
+ "type": "string", | ||
+ "default": "", | ||
+ "title": "Override source registry of the helm chart", | ||
+ "examples": [ | ||
+ "public.ecr.aws/eks-anywhere" | ||
+ ] | ||
+ }, | ||
+ "imagePullPolicy": { | ||
+ "type": "string", | ||
+ "default": "", | ||
+ "title": "Image pullPolicy Schema", | ||
+ "examples": [ | ||
+ "IfNotPresent" | ||
+ ] | ||
+ }, | ||
"acmesolver": { | ||
"$ref": "#/$defs/helm-values.acmesolver" | ||
}, | ||
-- | ||
2.44.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters