mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-21 02:56:50 +10:00
Merge pull request #1030 from bitnami/adapt-ingress-controller
[bitnami/nginx-ingress-controller] Use geoip2 by default
This commit is contained in:
@@ -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: {}
|
||||
|
||||
|
||||
@@ -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: {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user