Remove DELETED from the provisioning status list

After closing the story board [1] the api won't return deleted
records. Leaving the 'DELETED' on the '--provisioning-status' list
causes confusion as it always return an empty result.

[1] https://storyboard.openstack.org/#!/story/1673504

Change-Id: I6299c5fed2140b7df1713da798103ade54ec517b
This commit is contained in:
Marcin Wilk 2022-05-13 17:05:25 +02:00
parent 685d8cecaf
commit 1e645a0fc0
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ from oslo_utils import uuidutils
from octaviaclient.osc.v2 import constants as const
from octaviaclient.osc.v2 import utils as v2_utils
PROVISIONING_STATUS = ['ACTIVE', 'DELETED', 'ERROR', 'PENDING_CREATE',
PROVISIONING_STATUS = ['ACTIVE', 'ERROR', 'PENDING_CREATE',
'PENDING_UPDATE', 'PENDING_DELETE']
OPERATING_STATUS = ['ONLINE', 'DRAINING', 'OFFLINE', 'DEGRADED', 'ERROR',