Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions terraform_files/baremetal/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ data "libvirt_network_dns_host_template" "api-int" {
# TODO: leave only the wildcard address entry defined and remove the other specific DNS assignments
# Read more at: https://bugzilla.redhat.com/show_bug.cgi?id=1532856
data "libvirt_network_dnsmasq_options_template" "wildcard-apps-ingress" {
# Enable "apps" wildcard in case of SNO and when we try to add day2 worker to SNO
count = var.ingress_vips == var.api_vips ? 1 : 0
# Enable "apps" wildcard in case of SNO/CMN/UMN and when we try to add day2 worker to SNO
count = 1
option_name = "address"
option_value = "/apps.${local.base_cluster_domain}/${var.ingress_vips[0]}"
}
Expand Down