fix(argo-cd): Add default value for the applicationSet webhook ingress boolean
Signed-off-by: Marcus Young <myoung34@my.apsu.edu>
This commit is contained in:
parent
5f2f0edad0
commit
c2b1286853
3 changed files with 9 additions and 2 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.10.0
|
||||||
kubeVersion: ">=1.23.0-0"
|
kubeVersion: ">=1.23.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 6.0.2
|
version: 6.0.3
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -27,4 +27,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
description: Fixed rendering of ingressGrpc extraTls sections
|
description: Added missing default value for applicationSet.webhook.ingress.enabled
|
||||||
|
|
|
@ -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.terminationGracePeriodSeconds | int | `30` | terminationGracePeriodSeconds for container lifecycle hook |
|
||||||
| applicationSet.tolerations | list | `[]` (defaults to global.tolerations) | [Tolerations] for use with node taints |
|
| 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.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
|
## Notifications
|
||||||
|
|
||||||
|
|
|
@ -2555,6 +2555,12 @@ applicationSet:
|
||||||
## Has higher precedence over `applicationSet.pdb.minAvailable`
|
## Has higher precedence over `applicationSet.pdb.minAvailable`
|
||||||
maxUnavailable: ""
|
maxUnavailable: ""
|
||||||
|
|
||||||
|
## -- ApplicationSet webhook configuration
|
||||||
|
webhook:
|
||||||
|
# -- Ingress configuration for the webhook
|
||||||
|
ingress:
|
||||||
|
# -- Enable ApplicationSet webhook ingress
|
||||||
|
enabled: false
|
||||||
## ApplicationSet controller image
|
## ApplicationSet controller image
|
||||||
image:
|
image:
|
||||||
# -- Repository to use for the ApplicationSet controller
|
# -- Repository to use for the ApplicationSet controller
|
||||||
|
|
Loading…
Reference in a new issue