From 2061ac9fbd94769f3842fb0cd729a2290e401cbc Mon Sep 17 00:00:00 2001 From: Adriano Torres Date: Tue, 25 Nov 2025 11:24:39 +1030 Subject: [PATCH] add podMutatorWebhookConfig to readme, update its description in values file --- helm/aws-load-balancer-controller/README.md | 1 + helm/aws-load-balancer-controller/values.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/helm/aws-load-balancer-controller/README.md b/helm/aws-load-balancer-controller/README.md index 6da919857e..42648fb5d8 100644 --- a/helm/aws-load-balancer-controller/README.md +++ b/helm/aws-load-balancer-controller/README.md @@ -281,6 +281,7 @@ The default values set by the application itself can be confirmed [here](https:/ | `serviceMutatorWebhookConfig.failurePolicy` | Failure policy for the Service Mutator webhook | `Fail` | | `serviceMutatorWebhookConfig.objectSelector` | Object selector(s) to limit which objects will be mutated by the Service Mutator webhook | `[]` | | `serviceMutatorWebhookConfig.operations` | List of operations that will trigger the the Service Mutator webhook | `[ CREATE ]` | +| `.podMutatorWebhookConfig.failurePolicy` | Failure policy for the Pod Mutator webhook | `Ignore` | | `autoscaling` | If `autoscaling.enabled=true`, enable the HPA on the controller mainly to survive load induced failure by the calls to the `aws-load-balancer-webhook-service`. Please keep in mind that the controller pods have `priorityClassName: system-cluster-critical`, enabling HPA may lead to the eviction of other low-priority pods in the node | `false` | | `serviceTargetENISGTags` | set of `key=value` pairs of AWS tags in addition to cluster name for finding the target ENI security group to which to add inbound rules from NLBs | None | | `loadBalancerClass` | Sets the AWS load balancer type to be used when the Kubernetes service requests an external load balancer | `service.k8s.aws/nlb` | diff --git a/helm/aws-load-balancer-controller/values.yaml b/helm/aws-load-balancer-controller/values.yaml index 794d0e9b6c..23aa1c66c2 100644 --- a/helm/aws-load-balancer-controller/values.yaml +++ b/helm/aws-load-balancer-controller/values.yaml @@ -459,7 +459,7 @@ serviceMutatorWebhookConfig: - CREATE # - UPDATE -# podMutatorWebhookConfig contains configurations specific to the service mutator webhook +# podMutatorWebhookConfig contains configurations specific to the pod mutator webhook podMutatorWebhookConfig: # whether or not to fail the pod creation if the webhook fails failurePolicy: Ignore