Merge pull request #1030 from bitnami/adapt-ingress-controller

[bitnami/nginx-ingress-controller] Use geoip2 by default
This commit is contained in:
Javier J. Salmerón-García
2019-01-24 15:29:04 +01:00
committed by GitHub
3 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -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`
@@ -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: {}
+3 -1
View File
@@ -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: {}