From 1b8e86e1bee0907401e5c510fcc45dd936077216 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sun, 5 Nov 2023 23:25:47 +0900 Subject: [PATCH] Stop creating m1.small flavor The murano tempest plugin used to require the m1.small flavor but it later switched to m1.tiny flavor[1]. [1] https://review.opendev.org/c/openstack/murano/+/480848 Change-Id: I388d807f210c6b93d083e0feaa5ee52ab49a0493 --- manifests/provision.pp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/manifests/provision.pp b/manifests/provision.pp index 38f5f1b5e..e96f3204c 100644 --- a/manifests/provision.pp +++ b/manifests/provision.pp @@ -41,16 +41,8 @@ class openstack_integration::provision ( disk => '2', vcpus => '1', } - # NOTE(ykarel): "m1.small" flavor is required by murano scenario tests - nova_flavor { 'm1.small': - ensure => present, - id => '2', - ram => '128', - disk => '2', - vcpus => '1', - } + # NOTE(amoralej): "m1.tiny" flavor is required by murano scenario tests - # https://review.opendev.org/#/c/480848/ moved jobs from m1.small nova_flavor { 'm1.tiny': ensure => present, id => '1',