ingress-nginx
ingress-nginx copied to clipboard
Ingress NGINX Controller for Kubernetes
## What this PR does / why we need it: This PR add the ability for custom-error-pages to parse Accept headers with multiple entries. It will take the first entry...
Currently I have the Ingress resource which allows the rule (lets say rule A) based on IP ranges ``` nginx.ingress.kubernetes.io/configuration-snippet: | allow 111.111.111.0/24; allow 111.111.222.0/24; deny all; ``` I need...
**NGINX Ingress controller version** : Release: v1.1.0 Build: cacbee86b6ccc45bde8ffc184521bed3022e7dee Repository: https://github.com/kubernetes/ingress-nginx nginx version: nginx/1.19.9 **Kubernetes version** : Client Version: version.Info{Major:"1", Minor:"20", GitVersion:"v1.20.0", GitCommit:"af46c47ce925f4c4ad5cc8d1fca46c7b77d13b38", GitTreeState:"clean", BuildDate:"2020-12-08T17:59:43Z", GoVersion:"go1.15.5", Compiler:"gc", Platform:"windows/amd64"} Server Version:...
**NGINX Ingress controller version** (exec into the pod and run nginx-ingress-controller --version.): ``` bash-5.1$ /nginx-ingress-controller --version ------------------------------------------------------------------------------- NGINX Ingress controller Release: v1.1.1 Build: a17181e43ec85534a6fea968d95d019c5a4bc8cf Repository: https://github.com/kubernetes/ingress-nginx nginx version: nginx/1.19.9 -------------------------------------------------------------------------------...
**NGINX Ingress controller version** (exec into the pod and run nginx-ingress-controller --version.): ``` bash-5.1$ /nginx-ingress-controller --version ------------------------------------------------------------------------------- NGINX Ingress controller Release: v1.1.0 Build: cacbee86b6ccc45bde8ffc184521bed3022e7dee Repository: https://github.com/kubernetes/ingress-nginx nginx version: nginx/1.19.9 -------------------------------------------------------------------------------...
Some PKI implementations like https://github.com/smallstep/certificates issue aggressively short-lived certificates by default (24 hours, for example). In situations where this is the desired/intended configuration for Ingress TLS certs, this causes a...
## What this PR does / why we need it: When upgrading the ingress-nginx chart in our environment (via Pulumi) from a really old version to the latest (4.2.0) we...
You can probably skip down to the bottom to the "Others" section. I only put in all the commands in case it helped and because it's required. **NGINX Ingress controller...
add namespace override for multi-namespace deployments in combined charts https://github.com/helm/charts/pull/15202 What do you want to happen? - helm chart of ingress-nginx support namespace override for multi-namespace deployments in combined charts...
### Use case In our setup, we tried to replace the default NGINX-Error Page with custom error pages. One requirement is, that error-pages from backends are unchanged. Example: - If...