Add COMPUTE_STATUS_DISABLED trait

This will be used by nova to signal when a compute node
resource provider is disabled so that a placement request
pre-filter in the nova scheduler can ask placement to filter
out compute node allocation candidates that are disabled,
similar to the post-placement ComputeFilter.

Part of nova blueprint pre-filter-disabled-computes

Change-Id: Ia8e4487bfb59f764a6817ec8650785ffa902eab5
This commit is contained in:
Matt Riedemann 2019-06-24 15:58:11 -04:00
parent 1df7ecc263
commit 74f8a3fe09
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
TRAITS = [
# The compute node resource provider is disabled.
'DISABLED',
]