Skip to content
Snippets Groups Projects
Commit 152f271e authored by garciadeblas's avatar garciadeblas
Browse files

Fix getting flavor ID when using python-openstackclient==7.0.0


Change-Id: Ib3e8af1a6a6d86e489b7734a8a9bf5597fa8326c
Signed-off-by: default avatargarciadeblas <gerardo.garciadeblas@telefonica.com>
parent 55a8874d
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ Get Server Flavor ID
[Documentation] Get from Openstack the flavor id of a server/VM passed as argument.
[Arguments] ${server_id}
Should Not Be Empty ${server_id}
${rc} ${stdout}= Run And Return Rc And Output openstack server show ${server_id} | grep flavor | awk 'NR>1{print $1}' RS='(' FS=')'
${rc} ${stdout}= Run And Return Rc And Output openstack server show ${server_id} -c flavor -f value |yq -r '.id'
Log ${stdout}
Should Be Equal As Integers ${rc} ${SUCCESS_RETURN_CODE}
RETURN ${stdout}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment