summaryrefslogtreecommitdiffstats
path: root/components/congress/ansible/config.yml
blob: cf94414dd1303f4ff2d012e7423794d4692f4f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
# 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 ---------