a84b2091cf
Those functions were part of the neutron devstack plugin but we discussed it during last PTG [1] and decided to move to the Devstack repo as plugins which are used by e.g. CI jobs which are defined outside of the neutron repository. Placement integration is used e.g. in the tempest-slow job which is defined in tempest and used by many different OpenStack projects. [1] https://etherpad.opendev.org/p/neutron-yoga-ptg#L142 Change-Id: I2c26063896ab2679cffd01227a40a3283caa3b17
11 lines
188 B
Bash
11 lines
188 B
Bash
#!/bin/bash
|
|
|
|
function configure_segments_service_plugin {
|
|
neutron_service_plugin_class_add segments
|
|
}
|
|
|
|
function configure_segments_extension {
|
|
configure_segments_service_plugin
|
|
}
|
|
|