From 3066f79b09c1c5f1482a2f8663504e1697863a8f Mon Sep 17 00:00:00 2001 From: drfaust92 Date: Mon, 25 Mar 2024 15:44:30 +0200 Subject: [PATCH] document and add to schema nameOverride Signed-off-by: drfaust92 --- deploy/charts/trust-manager/README.md | 5 +++++ deploy/charts/trust-manager/values.schema.json | 7 +++++++ deploy/charts/trust-manager/values.yaml | 3 ++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/deploy/charts/trust-manager/README.md b/deploy/charts/trust-manager/README.md index bb94f2b1..d263f6f9 100644 --- a/deploy/charts/trust-manager/README.md +++ b/deploy/charts/trust-manager/README.md @@ -54,6 +54,11 @@ replicaCount: ${REPLICAS_OVERRIDE:=3} +#### **nameOverride** ~ `string` +> Default value: +> ```yaml +> "" +> ``` #### **namespace** ~ `string` > Default value: > ```yaml diff --git a/deploy/charts/trust-manager/values.schema.json b/deploy/charts/trust-manager/values.schema.json index 124a6c6f..c975df8b 100644 --- a/deploy/charts/trust-manager/values.schema.json +++ b/deploy/charts/trust-manager/values.schema.json @@ -35,6 +35,9 @@ "imagePullSecrets": { "$ref": "#/$defs/helm-values.imagePullSecrets" }, + "nameOverride": { + "$ref": "#/$defs/helm-values.nameOverride" + }, "namespace": { "$ref": "#/$defs/helm-values.namespace" }, @@ -516,6 +519,10 @@ "default": [], "items": {} }, + "helm-values.nameOverride": { + "type": "string", + "default": "" + }, "helm-values.namespace": { "description": "The namespace to install trust-manager into.\nIf not set, the namespace of the release is used.\nThis is helpful when installing trust-manager as a chart dependency (sub chart).", "type": "string", diff --git a/deploy/charts/trust-manager/values.yaml b/deploy/charts/trust-manager/values.yaml index 090c2c90..620e6dee 100644 --- a/deploy/charts/trust-manager/values.yaml +++ b/deploy/charts/trust-manager/values.yaml @@ -29,6 +29,8 @@ crds: # +docs:type=number,string,null replicaCount: 1 +nameOverride: "" + # The namespace to install trust-manager into. # If not set, the namespace of the release is used. # This is helpful when installing trust-manager as a chart dependency (sub chart). @@ -173,7 +175,6 @@ filterExpiredCertificates: # Whether to filter expired certificates from the trust bundle. enabled: false - app: # The verbosity of trust-manager logging. This takes a value from 1-5, with the higher value being more verbose. logLevel: 1