blob: 45fb5cac7af0efbbb886ee51e8394e7dd99ecee8 [file] [log] [blame]
Marek Celoudbc643142017-04-07 15:02:38 +02001parameters:
2 _param:
3 openstack_version: newton
4 apt_mk_version: nightly
Tatyana Leontovich3ca999a2017-04-11 12:52:19 +03005 mcp_repo_version: 1.1
Marek Celoudbc643142017-04-07 15:02:38 +02006 openstack_region: RegionOne
7 admin_email: root@localhost
8 cluster_public_protocol: http
9 cluster_public_host: 172.16.10.254
10 neutron_public_protocol: http
11 neutron_control_dvr: False
12 neutron_tenant_network_types: "flat,vxlan"
13 neutron_l3_ha: False
14 neutron_global_physnet_mtu: 1500
15 neutron_external_mtu: 1500
16 neutron_gateway_dvr: False
17 neutron_gateway_agent_mode: legacy
18 neutron_compute_dvr: False
19 neutron_compute_agent_mode: legacy
20 neutron_compute_external_access: False
21 galera_server_cluster_name: openstack_cluster
22 galera_server_maintenance_password: workshop
23 galera_server_admin_password: workshop
24 cluster_vip_address: 172.16.10.254
25 cluster_local_address: ${_param:single_address}
26 cluster_node01_hostname: ctl01
27 cluster_node01_address: 172.16.10.101
28 cluster_node02_hostname: ctl02
29 cluster_node02_address: 172.16.10.102
30 cluster_node03_hostname: ctl03
31 cluster_node03_address: 172.16.10.103
32 rabbitmq_secret_key: workshop
33 rabbitmq_admin_password: workshop
34 rabbitmq_openstack_password: workshop
35 rabbitmq_cold_password: workshop
36 glance_version: ${_param:openstack_version}
37 glance_service_host: ${_param:cluster_vip_address}
38 keystone_version: ${_param:openstack_version}
39 keystone_service_host: ${_param:cluster_vip_address}
40 heat_version: ${_param:openstack_version}
41 heat_service_host: ${_param:cluster_vip_address}
42 heat_domain_admin_password: workshop
43 ceilometer_version: ${_param:openstack_version}
44 ceilometer_service_host: 172.16.10.108
45 cinder_version: ${_param:openstack_version}
46 cinder_service_host: ${_param:cluster_vip_address}
47 ceilometer_graphite_publisher_host: 172.16.10.107
48 ceilometer_graphite_publisher_port: 2013
49 nova_version: ${_param:openstack_version}
50 nova_service_host: ${_param:cluster_vip_address}
51 nova_vncproxy_url: http://${_param:cluster_vip_address}:8060
52 neutron_version: ${_param:openstack_version}
53 neutron_service_host: ${_param:cluster_vip_address}
54 glusterfs_service_host: ${_param:cluster_vip_address}
55 metadata_password: password
56 mysql_admin_user: root
57 mysql_admin_password: workshop
58 mysql_cinder_password: workshop
59 mysql_ceilometer_password: workshop
60 mysql_glance_password: workshop
61 mysql_grafana_password: workshop
62 mysql_heat_password: workshop
63 mysql_keystone_password: workshop
64 mysql_neutron_password: workshop
65 mysql_nova_password: workshop
Jiri Broulikf275ee22017-05-04 10:35:29 +020066 mysql_aodh_password: workshop
Marek Celoudbc643142017-04-07 15:02:38 +020067 keystone_service_token: workshop
68 keystone_admin_password: workshop
69 keystone_ceilometer_password: workshop
70 keystone_cinder_password: workshop
71 keystone_glance_password: workshop
72 keystone_heat_password: workshop
73 keystone_keystone_password: workshop
74 keystone_neutron_password: workshop
75 keystone_nova_password: workshop
76 ceilometer_secret_key: workshop
Marek Celoud4d274922017-04-07 15:52:07 +020077 metadata_password: workshop
Marek Celoudbc643142017-04-07 15:02:38 +020078 horizon_version: ${_param:openstack_version}
79 horizon_secret_key: opaesee8Que2yahJoh9fo0eefo1Aeyo6ahyei8zeiboh3aeth5loth7ieNa5xi5e
80 horizon_identity_host: ${_param:cluster_vip_address}
81 horizon_identity_encryption: none
Adam Tenglera84838d2017-05-11 19:12:29 +020082 horizon_identity_version: 2
Marek Celoudbc643142017-04-07 15:02:38 +020083 mongodb_server_replica_set: ceilometer
84 mongodb_ceilometer_password: cloudlab
85 mongodb_admin_password: cloudlab
86 mongodb_shared_key: eoTh1AwahlahqueingeejooLughah4tei9feing0eeVaephooDi2li1TaeV1ooth
87 linux:
88 network:
89 host:
90 prx:
91 address: ${_param:openstack_proxy_address}
92 names:
93 - prx
94 - prx.${_param:cluster_domain}
95 prx01:
96 address: ${_param:openstack_proxy_node01_address}
97 names:
98 - prx01
99 - prx01.${_param:cluster_domain}
100 ctl:
101 address: ${_param:openstack_control_address}
102 names:
103 - ctl
104 - ctl.${_param:cluster_domain}
105 ctl01:
106 address: ${_param:openstack_control_node01_address}
107 names:
108 - ctl01
109 - ctl01.${_param:cluster_domain}
110 ctl02:
111 address: ${_param:openstack_control_node02_address}
112 names:
113 - ctl02
114 - ctl02.${_param:cluster_domain}
115 ctl03:
116 address: ${_param:openstack_control_node03_address}
117 names:
118 - ctl03
119 - ctl03.${_param:cluster_domain}
120 gtw01:
121 address: ${_param:openstack_gateway_address}
122 names:
123 - gtw01
124 - gtw01.${_param:cluster_domain}
Jiri Broulikdec1e612017-08-17 17:19:10 +0200125 cmp01:
126 address: 172.16.10.105
127 names:
128 - cmp01
129 - cmp01.${_param:cluster_domain}
130 cmp02:
131 address: 172.16.10.106
132 names:
133 - cmp02
134 - cmp02.${_param:cluster_domain}
Tatyana Leontovichfb60de62017-06-27 13:03:11 +0300135 system:
136 user:
137 root:
138 name: root
139 password: false