2015-09-18 08:49:28 -04:00
|
|
|
# Copyright 2015 Red Hat, 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
WEBROOT = '/dashboard/'
|
|
|
|
|
|
|
|
SERVICE_LIST = {
|
2016-02-23 18:21:41 -05:00
|
|
|
'aodh': {'password_field': 'OVERCLOUD_AODH_PASSWORD'},
|
2015-09-18 08:49:28 -04:00
|
|
|
'ceilometer': {'password_field': 'OVERCLOUD_CEILOMETER_PASSWORD'},
|
|
|
|
'cinder': {'password_field': 'OVERCLOUD_CINDER_PASSWORD'},
|
|
|
|
'cinderv2': {'password_field': 'OVERCLOUD_CINDER_PASSWORD'},
|
|
|
|
'glance': {'password_field': 'OVERCLOUD_GLANCE_PASSWORD'},
|
|
|
|
'heat': {'password_field': 'OVERCLOUD_HEAT_PASSWORD'},
|
|
|
|
'neutron': {'password_field': 'OVERCLOUD_NEUTRON_PASSWORD'},
|
|
|
|
'nova': {'password_field': 'OVERCLOUD_NOVA_PASSWORD'},
|
|
|
|
'novav3': {'password_field': 'OVERCLOUD_NOVA_PASSWORD'},
|
|
|
|
'swift': {'password_field': 'OVERCLOUD_SWIFT_PASSWORD'},
|
|
|
|
'horizon': {
|
|
|
|
'port': '80',
|
|
|
|
'path': WEBROOT,
|
|
|
|
'admin_path': '%sadmin' % WEBROOT},
|
2015-08-27 19:38:27 -04:00
|
|
|
'sahara': {'password_field': 'OVERCLOUD_SAHARA_PASSWORD'},
|
2015-09-18 08:49:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
TRIPLEO_HEAT_TEMPLATES = "/usr/share/openstack-tripleo-heat-templates/"
|
2015-12-04 09:29:16 +02:00
|
|
|
OVERCLOUD_YAML_NAMES = ("overcloud-without-mergepy.yaml", "overcloud.yaml")
|
2015-09-18 08:49:28 -04:00
|
|
|
RESOURCE_REGISTRY_NAME = "overcloud-resource-registry-puppet.yaml"
|
|
|
|
RHEL_REGISTRATION_EXTRACONFIG_NAME = (
|
|
|
|
"extraconfig/post_deploy/rhel-registration/")
|