[Terraform-Openstack] Add optional Octavia loadbalancer for Master Nodes (#10924)

* terraform-openstack add optional master lb

* remove unnecessary spaces

* remove unnecessary spaces

* fix ci warnings
This commit is contained in:
jaszil
2024-02-20 02:42:21 +01:00
committed by GitHub
parent 12c8d0456f
commit e250bb65bb
7 changed files with 124 additions and 1 deletions

View File

@@ -389,3 +389,23 @@ variable "group_vars_path" {
type = string
default = "./group_vars"
}
variable "k8s_master_loadbalancer_enabled" {
type = bool
default = "false"
}
variable "k8s_master_loadbalancer_listener_port" {
type = string
default = "6443"
}
variable "k8s_master_loadbalancer_server_port" {
type = string
default = 6443
}
variable "k8s_master_loadbalancer_public_ip" {
type = string
default = ""
}