From 72b3a855c598285e7d41e10e0d60308592bd4f78 Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Mon, 22 Jun 2020 16:02:59 -0500 Subject: [PATCH] Fix nova overrides The current overrides do not function correctly, and should have been setup with a multistring. This change corrects this to deploy right in nova. Change-Id: If709ea5d18399dc0d135351c2bdcdbd324663ad7 --- nova/values_overrides/cntt.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nova/values_overrides/cntt.yaml b/nova/values_overrides/cntt.yaml index 66887fa24d..0c3b5e5656 100644 --- a/nova/values_overrides/cntt.yaml +++ b/nova/values_overrides/cntt.yaml @@ -14,7 +14,9 @@ conf: nova: DEFAULT: reserved_huge_pages: - - node:0,size:1GB,count:4 - - node:1,size:1GB,count:4 + type: multistring + values: + - node:0,size:1GB,count:4 + - node:1,size:1GB,count:4 reserved_host_memory_mb: 512 ...