From 539e1af39b5573516e28e4d414d40c27f455e256 Mon Sep 17 00:00:00 2001 From: Akshay Mankar Date: Tue, 19 Dec 2023 10:09:28 +0100 Subject: [PATCH] hack: Make tests pass by increasing http2-max-requests in the ingress controller Workaround for: https://github.com/kazu-yamamoto/http2/issues/102 --- hack/helm_vars/ingress-nginx-controller/values.yaml.gotmpl | 2 ++ hack/helm_vars/nginx-ingress-controller/values.yaml.gotmpl | 2 ++ 2 files changed, 4 insertions(+) diff --git a/hack/helm_vars/ingress-nginx-controller/values.yaml.gotmpl b/hack/helm_vars/ingress-nginx-controller/values.yaml.gotmpl index dce7f5d0ab..116c627a2f 100644 --- a/hack/helm_vars/ingress-nginx-controller/values.yaml.gotmpl +++ b/hack/helm_vars/ingress-nginx-controller/values.yaml.gotmpl @@ -19,3 +19,5 @@ ingress-nginx: # prevent new kind:Ingress resources to be created in the cluster. admissionWebhooks: enabled: false + config: + http2-max-requests: 10000 \ No newline at end of file diff --git a/hack/helm_vars/nginx-ingress-controller/values.yaml.gotmpl b/hack/helm_vars/nginx-ingress-controller/values.yaml.gotmpl index a12dd9c86d..d7a4643a87 100644 --- a/hack/helm_vars/nginx-ingress-controller/values.yaml.gotmpl +++ b/hack/helm_vars/nginx-ingress-controller/values.yaml.gotmpl @@ -11,3 +11,5 @@ nginx-ingress: # choose a random free port https: null http: null + config: + http2-max-requests: "10000"