Skip to content

Commit 9bcf791

Browse files
committed
feat: INFRA-964 Added optional version override argument for nginx ingress version
1 parent f2407c8 commit 9bcf791

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ The module takes the following input variables:
4242
- **kubespray_repo_ref**: Tag or branch to use in the repo before running the kubespray playbooks. The default is the tag **v2.21.0** which is the tag the custom configuration of this repo is adapted to. You may not be successful if you use another tag/branch with different configuration expectations.
4343
- **kubespray_image**: Docker image to use for running the kubespray playbooks. The default is **ferlabcrsj/kubespray:2.21.0** which correlates with the value of **kubespray_repo_ref**.
4444
- **ingress_arguments**: Extra arguments to pass to ingress-nginx (ex: **--enable-ssl-passthrough**).
45+
- **ingress_version**: Allows you to override the nginx ingress version that kubespray installs by default, which is useful if, for example, you want to install the latest bugfix version without having to upgrade everything.
4546
- **container_registry_credentials**: Credentials to various container registries to pass to containerd. It should be an array of objects, each with the following keys:
4647
- **registry**: Url of the registry
4748
- **username**: Username to authenticate against the registry

kubespray/configurations/k8s_cluster/addons.yml

+3
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ rbd_provisioner_enabled: false
9898

9999
# Nginx ingress controller deployment
100100
ingress_nginx_enabled: true
101+
%{ if ingress_version != "" ~}
102+
ingress_nginx_version: "${ingress_version}"
103+
%{ endif ~}
101104
ingress_nginx_host_network: false
102105
ingress_publish_status_address: ""
103106
# ingress_nginx_nodeselector:

main.tf

+1
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ resource "null_resource" "kubernetes_installation" {
183183
ingress_http_port = var.k8_ingress_http_port
184184
ingress_https_port = var.k8_ingress_https_port
185185
ingress_arguments = var.ingress_arguments
186+
ingress_version = var.ingress_version
186187
}
187188
)
188189
destination = "${var.provisioning_path}/inventory/deployment/group_vars/k8s_cluster/addons.yml"

variables.tf

+6
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,12 @@ variable "ingress_arguments" {
188188
default = []
189189
}
190190

191+
variable "ingress_version" {
192+
description = "Version of the nginx ingress. Specify only if you wish to override the default version specified in kubespray"
193+
type = string
194+
default = ""
195+
}
196+
191197
variable "container_registry_credentials" {
192198
description = "Credentials to dependent container registries"
193199
type = list(object({

0 commit comments

Comments
 (0)