[bitnami/cert-manager] added webhook.timeoutSeconds (#33890)

*  (bitnami/cert-manager) added webhook.timeoutSeconds

How many seconds the webhook should wait for a response before timing out

Signed-off-by: Llyth <6819575+Llyth@users.noreply.github.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>

---------

Signed-off-by: Llyth <6819575+Llyth@users.noreply.github.com>
Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
Co-authored-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Llyth
2025-05-29 14:09:54 +02:00
committed by GitHub
co-authored by Bitnami Bot
parent 567319242b
commit 3e2b76e83e
6 changed files with 15 additions and 5 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
# Changelog
## 1.4.16 (2025-05-07)
## 1.5.0 (2025-05-27)
* [bitnami/cert-manager] Release 1.4.16 ([#33523](https://github.com/bitnami/charts/pull/33523))
* [bitnami/cert-manager] added webhook.timeoutSeconds ([#33890](https://github.com/bitnami/charts/pull/33890))
## <small>1.4.16 (2025-05-07)</small>
* [bitnami/cert-manager] Release 1.4.16 (#33523) ([03e13bf](https://github.com/bitnami/charts/commit/03e13bf81d3c73fbd944e7e8dfce20ecc5076287)), closes [#33523](https://github.com/bitnami/charts/issues/33523)
## <small>1.4.15 (2025-05-06)</small>
+1 -1
View File
@@ -37,4 +37,4 @@ maintainers:
name: cert-manager
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/cert-manager
version: 1.4.16
version: 1.5.0
+1
View File
@@ -424,6 +424,7 @@ As an alternative, you can make use of the preset configurations for pod affinit
| `webhook.image.pullPolicy` | Webhook image pull policy | `IfNotPresent` |
| `webhook.image.pullSecrets` | Webhook image pull secrets | `[]` |
| `webhook.image.debug` | Webhook image debug mode | `false` |
| `webhook.timeoutSeconds` | How many seconds the webhook should wait for a response before timing out | `30` |
| `webhook.resourcesPreset` | Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if controller.resources is set (controller.resources is recommended for production). | `nano` |
| `webhook.resources` | Set container requests and limits for different resources like CPU or memory (essential for production workloads) | `{}` |
| `webhook.podSecurityContext.enabled` | Enabled Webhook pods' Security Context | `true` |
@@ -35,7 +35,7 @@ webhooks:
# Equivalent matchPolicy ensures that non-v1 resource requests are sent to
# this webhook (after the resources have been converted to v1).
matchPolicy: Equivalent
timeoutSeconds: 10
timeoutSeconds: {{ .Values.webhook.timeoutSeconds }}
failurePolicy: Fail
# Only include 'sideEffects' field in Kubernetes 1.12+
sideEffects: None
@@ -45,7 +45,7 @@ webhooks:
# Equivalent matchPolicy ensures that non-v1 resource requests are sent to
# this webhook (after the resources have been converted to v1).
matchPolicy: Equivalent
timeoutSeconds: 10
timeoutSeconds: {{ .Values.webhook.timeoutSeconds }}
failurePolicy: Fail
sideEffects: None
clientConfig:
+5
View File
@@ -514,6 +514,11 @@ webhook:
## Set to true if you would like to see extra information on logs
##
debug: false
## @param webhook.timeoutSeconds [default: 30] How many seconds the webhook should wait for a response before timing out
## ref: https://cert-manager.io/docs/troubleshooting/webhook/#error-context-deadline-exceeded
## Default value is configured to 30 seconds (the maximum value allowed by Kubernetes)
##
timeoutSeconds: 30
## Webhook containers' resource requests and limits
## ref: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
## @param webhook.resourcesPreset Set container resources according to one common preset (allowed values: none, nano, micro, small, medium, large, xlarge, 2xlarge). This is ignored if controller.resources is set (controller.resources is recommended for production).