From 548114e3defc264c29c3fbf9092cdf220fb5252d Mon Sep 17 00:00:00 2001 From: Masco Kaliyamoorthy Date: Tue, 20 Apr 2021 13:03:09 +0530 Subject: [PATCH] fix metadata generation error Change-Id: Ifca0275935dc9e5ec0c171ef73ac1455ff658e30 --- browbeat/prescribe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browbeat/prescribe.py b/browbeat/prescribe.py index 5d69d81b4..2e9525cbb 100644 --- a/browbeat/prescribe.py +++ b/browbeat/prescribe.py @@ -24,7 +24,7 @@ class Metadata(object): def __init__(self): # These are the only groups from the ansible inventory, that we are # Interested in - self._supported_node_types = ['Overcloud', 'Undercloud'] + self._supported_node_types = ['overcloud', 'Undercloud'] pass def load_file(self, filename):