c9b7307cf3
Now the physical host plugin uses trusts to communicate with Nova. Added a decorator in order to create a trust in certain API calls. Added the trust_id to the ComputeHost model. Added a DB migration for this change and a unit test for it. Added the MissingTrustId exception, which is raised when no trust_id is provided to some methods of the RPC API. Removed all the configuration keys related to the admin Climate user. Modified NovaClientWrapper in order to use the information stored in context. Change-Id: I0b83a933c0d72871654f3c6252be5d5e2c4cfd54 Closes-Bug: #1285585
17 lines
608 B
Python
17 lines
608 B
Python
# Copyright (c) 2014 Bull.
|
|
#
|
|
# 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.
|
|
|
|
RESOURCE_TYPE = u'physical:host'
|