Merge "Add description to policies in cells_scheduler.py"

This commit is contained in:
Jenkins
2017-03-28 11:12:37 +00:00
committed by Gerrit Code Review
+17 -7
View File
@@ -13,19 +13,29 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_policy import policy
from nova.policies import base
POLICY_ROOT = 'cells_scheduler_filter:%s'
cells_scheduler_policies = [
policy.RuleDefault(
name=POLICY_ROOT % 'DifferentCellFilter',
check_str='is_admin:True'),
policy.RuleDefault(
name=POLICY_ROOT % 'TargetCellFilter',
check_str='is_admin:True'),
base.create_rule_default(
POLICY_ROOT % 'DifferentCellFilter',
'is_admin:True',
"""Different cell filter to route a build away from a particular cell
This policy is read by nova-scheduler process.
""",
[]),
base.create_rule_default(
POLICY_ROOT % 'TargetCellFilter',
'is_admin:True',
"""Target cell filter to route a build to a particular cell
This policy is read by nova-scheduler process.
""",
[])
]