diff --git a/bitnami/nginx-ingress-controller/README.md b/bitnami/nginx-ingress-controller/README.md index cda46236d..5b5ec38b4 100644 --- a/bitnami/nginx-ingress-controller/README.md +++ b/bitnami/nginx-ingress-controller/README.md @@ -54,7 +54,7 @@ Parameter | Description | Default `image.repository` | controller container image repository | `bitnami/nginx-ingress-controller` `image.tag` | controller container image tag | `{VERSION}` `image.pullPolicy` | controller container image pull policy | `IfNotPresent` -`config` | nginx ConfigMap entries | `nil` +`config` | nginx ConfigMap entries | `use-geoip: "false", use-geoip2: "true"` `hostNetwork` | If the nginx deployment / daemonset should run on the host's network namespace. Do not set this when `controller.service.externalIPs` is set and `kube-proxy` is used as there will be a port-conflict for port `80` | false `defaultBackendService` | default 404 backend service; required only if `defaultBackend.enabled = false` | `""` `electionID` | election ID to use for the status update | `ingress-controller-leader` diff --git a/bitnami/nginx-ingress-controller/values-production.yaml b/bitnami/nginx-ingress-controller/values-production.yaml index 6431ea9ea..15d2b2cb2 100644 --- a/bitnami/nginx-ingress-controller/values-production.yaml +++ b/bitnami/nginx-ingress-controller/values-production.yaml @@ -11,7 +11,10 @@ image: ## pullPolicy: IfNotPresent -config: {} +config: + use-geoip: "false" + use-geoip2: "true" + # Will add custom header to Nginx https://github.com/kubernetes/ingress-nginx/tree/master/docs/examples/customization/custom-headers headers: {} diff --git a/bitnami/nginx-ingress-controller/values.yaml b/bitnami/nginx-ingress-controller/values.yaml index a9acc8a7a..f90c0090d 100644 --- a/bitnami/nginx-ingress-controller/values.yaml +++ b/bitnami/nginx-ingress-controller/values.yaml @@ -17,7 +17,9 @@ image: ## pullPolicy: IfNotPresent -config: {} +config: + use-geoip: "false" + use-geoip2: "true" # Will add custom header to Nginx https://github.com/kubernetes/ingress-nginx/tree/master/docs/examples/customization/custom-headers headers: {}