fuel-plugin-manila/plugin_test/helpers/settings.py
Volodymyr Rozhanskyy 32accc1042 refactored smoke+bvt
Change-Id: Ifeda0a0f84fa64f8a893f67ca406f34df5c5813f
2016-09-12 15:15:19 +00:00

24 lines
969 B
Python

"""Copyright 2016 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
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.
"""
import os
MANILA_PLUGIN_VERSION = os.environ.get('MANILA_PLUGIN_VERSION', '1.0.1')
MANILA_PLUGIN_PATH = os.environ.get('MANILA_PLUGIN_PATH')
MANILA_IMAGE_PATH = os.environ.get('MANILA_IMAGE_PATH')
MANILA_IMAGE_DEST_PATH = '/var/www/nailgun/plugins/fuel-plugin-manila-' \
+ MANILA_PLUGIN_VERSION[0:3] \
+ '/repositories/ubuntu'
plugin_name = 'fuel-plugin-manila'