Skip to content

Commit d744ce4

Browse files
authored
Merge pull request kubernetes#6586 from tuusberg/fix-maxmind-license-key-location
fix(chart): Move 'maxmindLicenseKey' to `controller.maxmindLicenseKey`
2 parents 39b6593 + 64a6e87 commit d744ce4

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

charts/ingress-nginx/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This file documents all notable changes to [ingress-nginx](https://github.com/ku
44

55
### Unreleased
66

7+
### 3.15.0
8+
9+
- [X] [#6586](https://github.com/kubernetes/ingress-nginx/pull/6586) Fix 'maxmindLicenseKey' location in values.yaml
10+
711
### 3.14.0
812

913
- [X] [#6469](https://github.com/kubernetes/ingress-nginx/pull/6469) Allow custom service names for controller and backend

charts/ingress-nginx/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: ingress-nginx
33
# When the version is modified, make sure the artifacthub.io/changes list is updated
44
# Also update CHANGELOG.md
5-
version: 3.13.0
5+
version: 3.15.0
66
appVersion: 0.41.2
77
home: https://github.com/kubernetes/ingress-nginx
88
description: Ingress controller for Kubernetes using NGINX as a reverse proxy and load balancer
@@ -21,4 +21,4 @@ annotations:
2121
# List of changes for the release in artifacthub.io
2222
# https://artifacthub.io/packages/helm/ingress-nginx/ingress-nginx?modal=changelog
2323
artifacthub.io/changes: |
24-
- Allow custom service names for controller and backend
24+
- Fix 'maxmindLicenseKey' location in values.yaml

charts/ingress-nginx/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ controller:
120120
## Annotations to be added to the udp config configmap
121121
annotations: {}
122122

123+
# Maxmind license key to download GeoLite2 Databases
124+
# https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases
125+
maxmindLicenseKey: ""
126+
123127
## Additional command line arguments to pass to nginx-ingress-controller
124128
## E.g. to specify the default SSL certificate you can use
125129
## extraArgs:
@@ -581,10 +585,6 @@ controller:
581585
##
582586
revisionHistoryLimit: 10
583587

584-
# Maxmind license key to download GeoLite2 Databases
585-
# https://blog.maxmind.com/2019/12/18/significant-changes-to-accessing-and-using-geolite2-databases
586-
maxmindLicenseKey: ""
587-
588588
## Default 404 backend
589589
##
590590
defaultBackend:

0 commit comments

Comments
 (0)