629932c307
Change-Id: Ief2e74fa07e4c5168f5cc00fd4017d80331cb180 Closes-Bug: #1199071
52 lines
1.7 KiB
Python
52 lines
1.7 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.
|
|
|
|
import logging
|
|
|
|
from oslo.config import cfg
|
|
|
|
from sahara import context
|
|
from sahara.swift import utils as su
|
|
from sahara.utils import xmlutils as x
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
CONF = cfg.CONF
|
|
HADOOP_SWIFT_AUTH_URL = 'fs.swift.service.sahara.auth.url'
|
|
HADOOP_SWIFT_TENANT = 'fs.swift.service.sahara.tenant'
|
|
HADOOP_SWIFT_USERNAME = 'fs.swift.service.sahara.username'
|
|
HADOOP_SWIFT_PASSWORD = 'fs.swift.service.sahara.password'
|
|
HADOOP_SWIFT_REGION = 'fs.swift.service.sahara.region'
|
|
|
|
|
|
def retrieve_tenant():
|
|
return context.current().tenant_name
|
|
|
|
|
|
def get_swift_configs():
|
|
configs = x.load_hadoop_xml_defaults('swift/resources/conf-template.xml')
|
|
for conf in configs:
|
|
if conf['name'] == HADOOP_SWIFT_AUTH_URL:
|
|
conf['value'] = su.retrieve_auth_url() + "tokens/"
|
|
if conf['name'] == HADOOP_SWIFT_TENANT:
|
|
conf['value'] = retrieve_tenant()
|
|
if CONF.os_region_name and conf['name'] == HADOOP_SWIFT_REGION:
|
|
conf['value'] = CONF.os_region_name
|
|
|
|
result = [cfg for cfg in configs if cfg['value']]
|
|
LOG.info("Swift would be integrated with the following "
|
|
"params: %s", result)
|
|
return result
|