Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support chart: disable ingress-nginx admission webhook being troublesome #4770

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions helm-charts/support/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@ ingress-nginx:
# use this type of config.
# https://github.com/kubernetes/ingress-nginx/issues/7837
allowSnippetAnnotations: true
admissionWebhooks:
# Disabled as cert-manager in EKS 1.30 ran into the following issue
# working with Ingress objects with the webhook not working out, with an
# error message including this:
#
# err="Internal error occurred: failed calling webhook \"validate.nginx.ingress.kubernetes.io\": failed to call webhook: Post \"https://support-ingress-nginx-controller-admission.support.svc:443/networking/v1/ingresses?timeout=10s\": tls: failed to verify certificate: x509: certificate signed by unknown authority"
#
# Disabling this shouldn't be an issue, it just helps catch invalid
# configurations beyond what the k8s api-server will catch.
#
enabled: false

# prometheus is responsible for collecting metrics and informing grafana about
# the metrics on request. It comes with several dependency charts, where we
Expand Down