osmo config delete#

Delete a named configuration or a specific config revision

usage: osmo config delete [-h] config_type [name] [--description DESCRIPTION] [--tags TAGS [TAGS ...]]

Positional Arguments#

config_type#

Type of config to delete (CONFIG_TYPE) or CONFIG_TYPE:revision_number to delete a specific revision

name#

Name of the config to delete (required when not deleting a revision)

Named Arguments#

--description, -d#

Description of the deletion (only used when deleting a named config)

--tags, -t#

Tags for the deletion (only used when deleting a named config)

Available config types (CONFIG_TYPE): BACKEND, BACKEND_TEST, DATASET, POD_TEMPLATE, POOL, RESOURCE_VALIDATION, ROLE

Examples#

Delete a named pool configuration:

osmo config delete POOL my-pool

Delete a specific revision:

osmo config delete SERVICE:123

Delete with description and tags:

osmo config delete BACKEND my-backend --description "Removing unused backend" --tags cleanup deprecated