From 8dcfe1a692815ee3a34dca32fd427471dfd0046a Mon Sep 17 00:00:00 2001 From: blsaws Date: Mon, 16 May 2016 07:40:31 -0700 Subject: Refactor installer code folders. JIRA: COPPER-2 Add initial centos7 bash scripts in development. Change-Id: I112aa43c231dac035f0d1bc2ae416fabf6b8b650 Signed-off-by: blsaws --- components/congress/ansible/config.yml | 94 ---------------------------------- 1 file changed, 94 deletions(-) delete mode 100644 components/congress/ansible/config.yml (limited to 'components/congress/ansible/config.yml') diff --git a/components/congress/ansible/config.yml b/components/congress/ansible/config.yml deleted file mode 100644 index cf94414..0000000 --- a/components/congress/ansible/config.yml +++ /dev/null @@ -1,94 +0,0 @@ ---- -# Copyright 2015-2016 AT&T Intellectual Property, 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. -# -# What this is: An Ansible installer answer file for installing OpenStack Congress on Centos 7. -# Status: testing in progress -# - -# temp directory used to build congress dependencies -tempDir: /tmp - -# directory where the binary venv package will be built -virtualPackageDir: /var/tmp - -# package version -congressVersion: "2015.1.0" - -# directory where to install congress. This should only be the base directory and not the full path. We will create the congress folder automatically -installDir: /opt - -# If this is the first time you are installing then set init = True. For subsequent install or upgrades set init = False -# You can also use the --start-at-task="(name)" and --step options to re-run and skip non-idempotent steps -# (non-idempotent means the step will fail if already completed) -init: "True" - -# This section contains the answers for all "init" (initial install) steps to -# initialize congress services, keystone endpoint, congress user creation and database initialization. -#--------- start init --------- -#hostIP -hostIP: 192.168.10.6 - -#public endpoint -publicEndpoint: http://192.168.10.6:1789/ - -#internal endpoint -internalEndpoint: http://192.168.10.6:1789/ - -#admin endpoint -adminEndpoint: http://192.168.10.6:1789/ - -#keystone admin user -keystoneAdminUser: admin - -#keystone admin password -keystoneAdminPassword: octopus - -#keystone auth_url -#keystoneAuthURL: http://192.168.10.6:35357/v2.0 - -#keystone auth_host -keystoneAuthHost: localhost - -#keystone auth protocal (http or https) -keystoneAuthProto: http - -#openstack admin tenant name -adminTenantName: admin - -#region -authRegion: RegionOne - -#congress admin username -congressAdminUser: congress - -#congress admin password -congressAdminPassword: congress - -#mysql user ip address or hostname -# TODO: whether this needs to be localhost or the actual IP address -mysqlDBIP: localhost - -#mysql root password -mysqlDBPassword: octopus - -#mysql root username -mysqlDBUser: root - -#congress db user -dbUser: congress - -#congress db password -dbPassword: congress -#--------- end init --------- -- cgit 1.2.3-korg