# Copyright 2019 Red Hat # # 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 __future__ import absolute_import import itertools from oslo_config import cfg GROUP_NAME = 'tripleo' OPTIONS = [ # Undercloud options cfg.StrOpt('undercloud_ssh_hostname', default='undercloud-0', help="hostname or IP address to be used to connect to " "undercloud host"), cfg.IntOpt('undercloud_ssh_port', default=None, help="TCP port of SSH server on undercloud host"), cfg.StrOpt('undercloud_ssh_username', default='stack', help="Username with access to stackrc and overcloudrc files"), cfg.StrOpt('undercloud_ssh_key_filename', default='~/.ssh/id_rsa', help="SSH key filename used to login to Undercloud node"), cfg.StrOpt('undercloud_rcfile', default='~/stackrc', help="Undercloud RC filename"), # Overcloud options cfg.IntOpt('overcloud_ssh_port', default=None, help="TCP port of SSH server on overcloud hosts"), cfg.StrOpt('overcloud_ssh_username', default='heat-admin', help="Default username used to connect to overcloud nodes"), cfg.StrOpt('overcloud_ssh_key_filename', default='~/.ssh/id_overcloud', help="SSH key filename used to login to Overcloud nodes"), cfg.StrOpt('overcloud_rcfile', default='~/overcloudrc', help="Overcloud RC filename"), cfg.IntOpt('overcloud_ip_version', help=("Default IP address version to be used to connect to " "overcloud nodes ")), cfg.StrOpt('overcloud_network_name', help="Name of network used to connect to overcloud nodes")] def register_tobiko_options(conf): conf.register_opts(group=cfg.OptGroup(GROUP_NAME), opts=OPTIONS) def list_options(): return [(GROUP_NAME, itertools.chain(OPTIONS))] def setup_tobiko_config(conf): # pylint: disable=unused-argument from tobiko.tripleo import overcloud from tobiko.tripleo import topology overcloud.setup_overcloud_keystone_crederntials() topology.setup_tripleo_topology()