66f310b227
- Use 401 error to determine work of Murano API in shell via curl - Change tempest parameters in utils - Rename mistralclient.py to workflowclient.py due names conflict in path. Closes-Bug: #1614602 Change-Id: I91bdda91da929b183393c4210af86bce619a53ec
39 lines
1.6 KiB
Python
39 lines
1.6 KiB
Python
# Copyright (c) 2013 Mirantis Inc.
|
|
#
|
|
# 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.
|
|
|
|
from murano.engine.system import agent
|
|
from murano.engine.system import agent_listener
|
|
from murano.engine.system import heat_stack
|
|
from murano.engine.system import instance_reporter
|
|
from murano.engine.system import logger
|
|
from murano.engine.system import net_explorer
|
|
from murano.engine.system import resource_manager
|
|
from murano.engine.system import status_reporter
|
|
from murano.engine.system import test_fixture
|
|
from murano.engine.system import workflowclient
|
|
|
|
|
|
def register(package):
|
|
package.register_class(agent.Agent)
|
|
package.register_class(agent_listener.AgentListener)
|
|
package.register_class(heat_stack.HeatStack)
|
|
package.register_class(resource_manager.ResourceManager)
|
|
package.register_class(instance_reporter.InstanceReportNotifier)
|
|
package.register_class(status_reporter.StatusReporter)
|
|
package.register_class(net_explorer.NetworkExplorer)
|
|
package.register_class(logger.Logger)
|
|
package.register_class(test_fixture.TestFixture)
|
|
package.register_class(workflowclient.MistralClient)
|