From 60b68c65f98d5209e0cb688dbf3a0b3416466255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=81nis=20Orlovs?= Date: Tue, 1 Oct 2024 14:01:39 +0300 Subject: [PATCH] Added chart values deprecation parameters. This will simplify updates for changes in charts. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pattern copied from https://github.com/jenkinsci/helm-charts/blob/jenkins-5.7.1/charts/jenkins/templates/deprecation.yaml v1 Signed-off-by: Jānis Orlovs --- charts/argo-cd/Chart.yaml | 4 ++-- charts/argo-cd/README.md | 2 +- charts/argo-cd/values.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index 4d7047db..8cfdad79 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -26,5 +26,5 @@ annotations: fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252 url: https://argoproj.github.io/argo-helm/pgp_keys.asc artifacthub.io/changes: | - - kind: fixed - description: Arrange for ApplicationSet in any namespace. + - kind: added + description: Added values depreciation pattern for Chart, to make easier upgrade process. \ No newline at end of file diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index eb1b8e7e..ef7b371b 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -670,7 +670,7 @@ NAME: my-release | Key | Type | Default | Description | |-----|------|---------|-------------| | apiVersionOverrides | object | `{}` | | -| checkDeprecation | bool | `true` | Checks if any deprecated values are used | +| checkDeprecation | bool | `false` | Checks if any deprecated values are used | | crds.additionalLabels | object | `{}` | Addtional labels to be added to all CRDs | | crds.annotations | object | `{}` | Annotations to be added to all CRDs | | crds.install | bool | `true` | Install and upgrade CRDs | diff --git a/charts/argo-cd/values.yaml b/charts/argo-cd/values.yaml index 8438d441..46e2ccfe 100644 --- a/charts/argo-cd/values.yaml +++ b/charts/argo-cd/values.yaml @@ -3723,5 +3723,5 @@ notifications: # - on-sync-status-unknown # -- Checks if any deprecated values are used -checkDeprecation: true +checkDeprecation: false