-
Notifications
You must be signed in to change notification settings - Fork 52
/
foreman-params.json
52 lines (52 loc) · 1.57 KB
/
foreman-params.json
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
{
"host": {
"name": "foreman_hostname",
"user": "admin",
"passwd": "changeme"
},
"settings": [{
"name": "puppetrun",
"value": "true"
}],
"proxy": {
"name": "proxy1",
"host": "https://foreman_hostname:8443"
},
"globals": {
"admin_email": "EDIT ME: EG admin@example.org",
"admin_password": "changeme",
"controller_node_public": "EDIT ME: EG 10.100.0.2",
"fixed_network_range": "EDIT ME: EG 10.100.10.0/24",
"floating_network_range": "EDIT ME: EG 8.21.28.128/25",
"pacemaker_pub_floating_ip": "EDIT ME: EG 10.100.10.0/24",
"pacemaker_priv_floating_ip": "EDIT ME: EG 8.21.28.128/25",
"glance_db_password": "changeme",
"glance_user_password": "changeme",
"horizon_secret_key": "secret",
"keystone_admin_token": "secret",
"keystone_db_password": "changeme",
"keystone_password": "changeme",
"mysql_root_password": "changeme",
"nova_db_password": "changeme",
"nova_user_password": "changeme",
"cinder_db_password": "changeme",
"cinder_user_password": "changeme",
"private_interface": "EDIT ME: em1",
"public_interface": "EDIT ME: em2",
"verbose": "true"
},
"hostgroups": {
"OpenStack Controller": {
"environment": "production",
"puppetclasses": [
"trystack::controller"
]
},
"OpenStack Nova Compute": {
"environment": "production",
"puppetclasses": [
"trystack::compute"
]
}
}
}