Skip to content

Commit 86ea77c

Browse files
committed
enhancement: Bump nginx ingress default version
1 parent d8909c0 commit 86ea77c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

modules/kubernetes/ingress_nginx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ No requirements.
2222
|------|-------------|------|---------|:--------:|
2323
| additional\_configmap\_options | Map of additional options to add to the configmap. Merged into a default set defined by the module. | `map(string)` | `{}` | no |
2424
| apply\_pod\_anti\_affinity | If true, will instruct k8s to try not to schedule multiple nginx controller pods on the same node if there are other nodes available. This helps redundancy, as it is less likely all your controller pods are on the same node, which could cause problems if that node were terminated unexepectedly. | `bool` | `true` | no |
25-
| chart\_version | The version of helm chart to use. | `string` | `"3.25.0"` | no |
25+
| chart\_version | The version of helm chart to use. | `string` | `"3.34.0"` | no |
2626
| connection\_idle\_timeout | The amount of time the load balancer will keep an idle connection open for. The value of nginx upstream-keepalive-timeout will also be set to this value + 5. If it were shorter than the LB timeout it could cause intermittent 502s. | `number` | `55` | no |
2727
| enable\_metrics | Enable prometheus metrics support, including adding a ServiceMonitor. | `bool` | n/a | yes |
2828
| external\_traffic\_policy | The external traffic policy to apply to the ingress service. Cluster will open a valid NodePort on all nodes even if they aren't running an ingress pod and kubernetes will handle sending the traffic to the correct pod. Local will only have valid NodePorts on the nodes running ingress pods. | `string` | `"Cluster"` | no |

modules/kubernetes/ingress_nginx/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
variable "chart_version" {
22
description = "The version of helm chart to use."
33
type = string
4-
default = "3.25.0"
4+
default = "3.34.0"
55
}
66

77
variable "replica_count" {

0 commit comments

Comments
 (0)