From 34baa9d9884b5bcbe1b80e13d9062641f37d08e5 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 10 Oct 2024 15:52:11 +0900 Subject: [PATCH] Support [baremetal_introspection] catalog_type This was overlooked when the other catalog_type option was added. Because the change which added the other catalog_type options is not yet released, a release note file is not additionally created. Change-Id: Ifa55e949232c1d6fd35a210344f3dff57835af33 (cherry picked from commit f50ee3c94d8886b0097628751dd98ab529be092c) (cherry picked from commit 19004d0f149388aceef3c715015bfc08ff3fdfb5) --- manifests/init.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/init.pp b/manifests/init.pp index 9b91e4da..3664d50e 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -248,6 +248,8 @@ # Defaults to $facts['os_service_default'] # [*baremetal_catalog_type*] # Defaults to $facts['os_service_default'] +# [*baremetal_introspection_catalog_type*] +# Defaults to $facts['os_service_default'] # [*dns_catalog_type*] # Defaults to $facts['os_service_default'] # [*load_balancer_catalog_type*] @@ -530,6 +532,7 @@ class tempest( $alarming_catalog_type = $facts['os_service_default'], $metric_catalog_type = $facts['os_service_default'], $baremetal_catalog_type = $facts['os_service_default'], + $baremetal_introspection_catalog_type = $facts['os_service_default'], $dns_catalog_type = $facts['os_service_default'], $load_balancer_catalog_type = $facts['os_service_default'], $share_catalog_type = $facts['os_service_default'], @@ -819,6 +822,7 @@ class tempest( 'alarming/catalog_type': value => $alarming_catalog_type; 'metric/catalog_type': value => $metric_catalog_type; 'baremetal/catalog_type': value => $baremetal_catalog_type; + 'baremetal_introspection/catalog_type': value => $baremetal_introspection_catalog_type; 'dns/catalog_type': value => $dns_catalog_type; 'load_balancer/catalog_type': value => $load_balancer_catalog_type; 'share/catalog_type': value => $share_catalog_type;