From 8a87d9e70a3c0967ebadc631694eaa232ba34998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Tue, 17 Dec 2024 15:10:36 +0100 Subject: [PATCH] Fix default value of nameTrunc --- values.md | 2 +- values.schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/values.md b/values.md index 0e94f75..836ba6b 100644 --- a/values.md +++ b/values.md @@ -260,7 +260,7 @@ - **`fullnameOverride`** _(string)_: [helm-common] Override the fullname (can be in the service or values). - **`releaseNameOverride`** _(string)_: [helm-common] Override the the release name (can be in the service, values or global). - **`releaseTrunc`** _(integer)_: [helm-common] The release name trunk length (can be in the service, values or global). Default: `20`. -- **`nameTrunc`** _(integer)_: [helm-common] The chart name trunk length (can be in the service, values or global). Default: `20`. +- **`nameTrunc`** _(integer)_: [helm-common] The chart name trunk length (can be in the service, values or global). Default: `63`. - **`prefixTrunc`** _(integer)_: [helm-common] The prefix trunk length (release and chart name) (can be in the service, values or global). Default: `40`. - **`serviceAccount`** _(object)_: Service account configuration. Cannot contain additional properties. - **`create`** _(boolean)_: Create a service account. diff --git a/values.schema.json b/values.schema.json index 0f0119b..6391fc4 100644 --- a/values.schema.json +++ b/values.schema.json @@ -23,7 +23,7 @@ "nameTrunc": { "type": "integer", "description": "[helm-common] The chart name trunk length (can be in the service, values or global)", - "default": 20 + "default": 63 }, "prefixTrunc": { "type": "integer",