commit 154583a3927d4fc31b56319c2d2dd7fb0f24a0b7 Author: Chi Lo Date: Fri Oct 2 08:07:20 2020 -0700 Expand the visibility enum to include shared and community Change-Id: I25d2e9c369b5802d6b7d7070fc1ae02c0e9e117f diff --git a/ranger_tempest_plugin/schemas/images_schema.py b/ranger_tempest_plugin/schemas/images_schema.py index 600cde8..304659d 100644 --- a/ranger_tempest_plugin/schemas/images_schema.py +++ b/ranger_tempest_plugin/schemas/images_schema.py @@ -95,7 +95,7 @@ _image = { "tags": _tags, "visibility": { "type": "string", - "enum": ["public", "private"] + "enum": ["public", "private", "shared", "community"] }, "min-disk": { "type": "number" @@ -185,7 +185,8 @@ list_images = { "name": {"type": "string"}, "visibiity": { "type": "string", - "enum": ["public", "private"] + "enum": ["public", "private", "shared", + "community"] }, "id": {"type": "string"} },