Browse Source

Merge pull request #24134 from abpframework/ingress-nginx/ingress-nginx

Update Helm install command for NGINX Ingress
pull/24144/head
Berkan Sasmaz 3 months ago
committed by GitHub
parent
commit
71976cb047
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      docs/en/get-started/pre-requirements.md

4
docs/en/get-started/pre-requirements.md

@ -108,9 +108,11 @@ If you are using Helm, you can install NGINX Ingress using the following command
```cs
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo update
helm upgrade --install --version=4.0.19 ingress-nginx ingress-nginx/ingress-nginx
helm upgrade --install --version=4.0.19 ingress-nginx ingress-nginx/ingress-nginx --set controller.config.enable-underscores-in-headers="true"
```
> [enable-underscores-in-headers](https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/configmap/#enable-underscores-in-headers) is required to allow http request use `__tenant` to pass tenant information to the backend service.
### mkcert
Use mkcert to generate trusted certificates for local development. You can install mkcert by following the [official mkcert installation guide](https://github.com/FiloSottile/mkcert#installation).

Loading…
Cancel
Save