diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index 40c10b7b..bb5da471 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -3,7 +3,7 @@ appVersion: v2.10.0 kubeVersion: ">=1.23.0-0" description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. name: argo-cd -version: 6.0.2 +version: 6.0.3 home: https://github.com/argoproj/argo-helm icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png sources: @@ -27,4 +27,4 @@ annotations: url: https://argoproj.github.io/argo-helm/pgp_keys.asc artifacthub.io/changes: | - kind: fixed - description: Fixed rendering of ingressGrpc extraTls sections + description: Added missing default value for applicationSet.webhook.ingress.enabled diff --git a/charts/argo-cd/README.md b/charts/argo-cd/README.md index 862a818e..aaee0cfe 100644 --- a/charts/argo-cd/README.md +++ b/charts/argo-cd/README.md @@ -1273,6 +1273,7 @@ If you want to use an existing Redis (eg. a managed service from a cloud provide | applicationSet.terminationGracePeriodSeconds | int | `30` | terminationGracePeriodSeconds for container lifecycle hook | | applicationSet.tolerations | list | `[]` (defaults to global.tolerations) | [Tolerations] for use with node taints | | applicationSet.topologySpreadConstraints | list | `[]` (defaults to global.topologySpreadConstraints) | Assign custom [TopologySpreadConstraints] rules to the ApplicationSet controller | +| applicationSet.webhook.ingress.enabled | bool | `true` | Create ApplicationSet webhook ingress | ## Notifications diff --git a/charts/argo-cd/values.yaml b/charts/argo-cd/values.yaml index 146dac34..92018eb0 100644 --- a/charts/argo-cd/values.yaml +++ b/charts/argo-cd/values.yaml @@ -2555,6 +2555,12 @@ applicationSet: ## Has higher precedence over `applicationSet.pdb.minAvailable` maxUnavailable: "" + ## -- ApplicationSet webhook configuration + webhook: + # -- Ingress configuration for the webhook + ingress: + # -- Enable ApplicationSet webhook ingress + enabled: false ## ApplicationSet controller image image: # -- Repository to use for the ApplicationSet controller