Implement Neutron tag extension into OSC
tag-add
tag-remove
tag-replace
Whiteboard
Armando: Was asked for you do help decide how to implement the Tag extension into OSC. Either as a plugin, or fully into OSC
Update 11/2/16: Will be done as plugin. Verified by Armando
[amotoki, Feb 23 2017] After discussing OSC core team, the conclusion is that Tag support with --tag option of individual resource like network looks better.
This approach is already adopted by image create and network tag support can follow this route. The idea is like this:
- openstack network create ... --tag red --tag blue <name>
- openstack network set ... --tag red --tag blue <name> (Add red and blue tags)
- openstack network set ... --no-tag --tag green --tag yellow <name> (Clear existing all tags and set green and yellow tags)
- openstack network unset --tag red <name> (Remove red tag)
- openstack network unset --all-tag <name> (Clear all tags)
Gerrit topic: https:/
Addressed by: https:/
Network tag support