Skip to content

Commit e52d26f

Browse files
authored
fix: allow webhook calls to fail (#911)
1 parent bdfe0b7 commit e52d26f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

charts/apisix-ingress-controller/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,6 @@ The same for container level, you need to set:
168168
| serviceMonitor.namespace | string | `"monitoring"` | @param serviceMonitor.namespace Namespace in which to create the ServiceMonitor |
169169
| webhook.certificate.provided | bool | `false` | Set to true if you want to provide your own certificate |
170170
| webhook.enabled | bool | `true` | Enable or disable admission webhook |
171-
| webhook.failurePolicy | string | `"Fail"` | Failure policy for the webhook (Fail or Ignore) |
171+
| webhook.failurePolicy | string | `"Ignore"` | Failure policy for the webhook (Fail or Ignore) |
172172
| webhook.port | int | `9443` | The port for the webhook server to listen on |
173173
| webhook.timeoutSeconds | int | `10` | Timeout in seconds for the webhook |

charts/apisix-ingress-controller/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ webhook:
105105
# -- The port for the webhook server to listen on
106106
port: 9443
107107
# -- Failure policy for the webhook (Fail or Ignore)
108-
failurePolicy: Fail
108+
failurePolicy: Ignore
109109
# -- Timeout in seconds for the webhook
110110
timeoutSeconds: 10
111111
certificate:

0 commit comments

Comments
 (0)