1. [general]
  2. # Path to a Public key to install on servers. If a usable key has not
  3. # been installed on the remote servers the user will be prompted for a
  4. # password and this key will be installed so the password will not be
  5. # required again
  6. CONFIG_SSH_KEY=/root/.ssh/authorized_keys
  7. # Set to 'y' if you would like Packstack to install MySQL
  8. CONFIG_MYSQL_INSTALL=y
  9. # Set to 'y' if you would like Packstack to install OpenStack Image
  10. # Service (Glance)
  11. CONFIG_GLANCE_INSTALL=y
  12. # Set to 'y' if you would like Packstack to install OpenStack Block
  13. # Storage (Cinder)
  14. CONFIG_CINDER_INSTALL=y
  15. # Set to 'y' if you would like Packstack to install OpenStack Compute
  16. # (Nova)
  17. CONFIG_NOVA_INSTALL=y
  18. # Set to 'y' if you would like Packstack to install OpenStack
  19. # Networking (Neutron)
  20. CONFIG_NEUTRON_INSTALL=y
  21. # Set to 'y' if you would like Packstack to install OpenStack
  22. # Dashboard (Horizon)
  23. CONFIG_HORIZON_INSTALL=y
  24. # Set to 'y' if you would like Packstack to install OpenStack Object
  25. # Storage (Swift)
  26. CONFIG_SWIFT_INSTALL=y
  27. # Set to 'y' if you would like Packstack to install OpenStack
  28. # Metering (Ceilometer)
  29. CONFIG_CEILOMETER_INSTALL=y
  30. # Set to 'y' if you would like Packstack to install OpenStack
  31. # Orchestration (Heat)
  32. CONFIG_HEAT_INSTALL=y
  33. # Set to 'y' if you would like Packstack to install the OpenStack
  34. # Client packages. An admin "rc" file will also be installed
  35. CONFIG_CLIENT_INSTALL=y
  36. # Comma separated list of NTP servers. Leave plain if Packstack
  37. # should not install ntpd on instances.
  38. CONFIG_NTP_SERVERS=172.28.0.1
  39. # Set to 'y' if you would like Packstack to install Nagios to monitor
  40. # OpenStack hosts
  41. CONFIG_NAGIOS_INSTALL=y
  42. # Comma separated list of servers to be excluded from installation in
  43. # case you are running Packstack the second time with the same answer
  44. # file and don't want Packstack to touch these servers. Leave plain if
  45. # you don't need to exclude any server.
  46. EXCLUDE_SERVERS=
  47. # The IP address of the server on which to install MySQL
  48. CONFIG_MYSQL_HOST=172.28.1.132
  49. # Username for the MySQL admin user
  50. CONFIG_MYSQL_USER=root
  51. # Password for the MySQL admin user
  52. CONFIG_MYSQL_PW=ce80d7182229465d
  53. # The IP address of the server on which to install the QPID service
  54. CONFIG_QPID_HOST=172.28.1.132
  55. # Enable SSL for the QPID service
  56. CONFIG_QPID_ENABLE_SSL=n
  57. # Enable Authentication for the QPID service
  58. CONFIG_QPID_ENABLE_AUTH=n
  59. # The password for the NSS certificate database of the QPID service
  60. CONFIG_QPID_NSS_CERTDB_PW=f214954b61e246668c96c456f0a88f4c
  61. # The port in which the QPID service listens to SSL connections
  62. CONFIG_QPID_SSL_PORT=5671
  63. # The filename of the certificate that the QPID service is going to
  64. # use
  65. CONFIG_QPID_SSL_CERT_FILE=/etc/pki/tls/certs/qpid_selfcert.pem
  66. # The filename of the private key that the QPID service is going to
  67. # use
  68. CONFIG_QPID_SSL_KEY_FILE=/etc/pki/tls/private/qpid_selfkey.pem
  69. # Auto Generates self signed SSL certificate and key
  70. CONFIG_QPID_SSL_SELF_SIGNED=y
  71. # User for qpid authentication
  72. CONFIG_QPID_AUTH_USER=qpid_user
  73. # Password for user authentication
  74. CONFIG_QPID_AUTH_PASSWORD=9399ebe0387047bb
  75. # The IP address of the server on which to install Keystone
  76. CONFIG_KEYSTONE_HOST=172.28.1.132
  77. # The password to use for the Keystone to access DB
  78. CONFIG_KEYSTONE_DB_PW=c8b2aa736a594a09
  79. # The token to use for the Keystone service api
  80. CONFIG_KEYSTONE_ADMIN_TOKEN=a412627f77e5468ba0076009a2182b9d
  81. # The password to use for the Keystone admin user
  82. CONFIG_KEYSTONE_ADMIN_PW=admin
  83. # The password to use for the Keystone demo user
  84. CONFIG_KEYSTONE_DEMO_PW=dc767524a6434b9c
  85. # Kestone token format. Use either UUID or PKI
  86. CONFIG_KEYSTONE_TOKEN_FORMAT=PKI
  87. # The IP address of the server on which to install Glance
  88. CONFIG_GLANCE_HOST=172.28.1.132
  89. # The password to use for the Glance to access DB
  90. CONFIG_GLANCE_DB_PW=b26e106c78fa4445
  91. # The password to use for the Glance to authenticate with Keystone
  92. CONFIG_GLANCE_KS_PW=142e51faf24c4f3b
  93. # The IP address of the server on which to install Cinder
  94. CONFIG_CINDER_HOST=172.28.1.132
  95. # The password to use for the Cinder to access DB
  96. CONFIG_CINDER_DB_PW=181508009a664304
  97. # The password to use for the Cinder to authenticate with Keystone
  98. CONFIG_CINDER_KS_PW=01b0d9ed9a354643
  99. # The Cinder backend to use, valid options are: lvm, gluster, nfs
  100. CONFIG_CINDER_BACKEND=lvm
  101. # Create Cinder's volumes group. This should only be done for testing
  102. # on a proof-of-concept installation of Cinder. This will create a
  103. # file-backed volume group and is not suitable for production usage.
  104. CONFIG_CINDER_VOLUMES_CREATE=n
  105. # Cinder's volumes group size. Note that actual volume size will be
  106. # extended with 3% more space for VG metadata.
  107. CONFIG_CINDER_VOLUMES_SIZE=20G
  108. # A single or comma separated list of gluster volume shares to mount,
  109. # eg: ip-address:/vol-name, domain:/vol-name
  110. CONFIG_CINDER_GLUSTER_MOUNTS=
  111. # A single or comma seprated list of NFS exports to mount, eg: ip-
  112. # address:/export-name
  113. CONFIG_CINDER_NFS_MOUNTS=
  114. # The IP address of the server on which to install the Nova API
  115. # service
  116. CONFIG_NOVA_API_HOST=172.28.1.132
  117. # The IP address of the server on which to install the Nova Cert
  118. # service
  119. CONFIG_NOVA_CERT_HOST=172.28.1.132
  120. # The IP address of the server on which to install the Nova VNC proxy
  121. CONFIG_NOVA_VNCPROXY_HOST=172.28.1.132
  122. # A comma separated list of IP addresses on which to install the Nova
  123. # Compute services
  124. CONFIG_NOVA_COMPUTE_HOSTS=172.28.1.10
  125. # The IP address of the server on which to install the Nova Conductor
  126. # service
  127. CONFIG_NOVA_CONDUCTOR_HOST=172.28.1.132
  128. # The password to use for the Nova to access DB
  129. CONFIG_NOVA_DB_PW=5ec53b32536d4c75
  130. # The password to use for the Nova to authenticate with Keystone
  131. CONFIG_NOVA_KS_PW=23fef45ae7fd4154
  132. # The IP address of the server on which to install the Nova Scheduler
  133. # service
  134. CONFIG_NOVA_SCHED_HOST=172.28.1.132
  135. # The overcommitment ratio for virtual to physical CPUs. Set to 1.0
  136. # to disable CPU overcommitment
  137. CONFIG_NOVA_SCHED_CPU_ALLOC_RATIO=16.0
  138. # The overcommitment ratio for virtual to physical RAM. Set to 1.0 to
  139. # disable RAM overcommitment
  140. CONFIG_NOVA_SCHED_RAM_ALLOC_RATIO=1.5
  141. # Private interface for Flat DHCP on the Nova compute servers
  142. CONFIG_NOVA_COMPUTE_PRIVIF=eth1
  143. # The list of IP addresses of the server on which to install the Nova
  144. # Network service
  145. CONFIG_NOVA_NETWORK_HOSTS=172.28.1.132
  146. # Nova network manager
  147. CONFIG_NOVA_NETWORK_MANAGER=nova.network.manager.FlatDHCPManager
  148. # Public interface on the Nova network server
  149. CONFIG_NOVA_NETWORK_PUBIF=eth0
  150. # Private interface for network manager on the Nova network server
  151. CONFIG_NOVA_NETWORK_PRIVIF=eth1
  152. # IP Range for network manager
  153. CONFIG_NOVA_NETWORK_FIXEDRANGE=192.168.32.0/22
  154. # IP Range for Floating IP's
  155. CONFIG_NOVA_NETWORK_FLOATRANGE=10.3.4.0/22
  156. # Name of the default floating pool to which the specified floating
  157. # ranges are added to
  158. CONFIG_NOVA_NETWORK_DEFAULTFLOATINGPOOL=nova
  159. # Automatically assign a floating IP to new instances
  160. CONFIG_NOVA_NETWORK_AUTOASSIGNFLOATINGIP=n
  161. # First VLAN for private networks
  162. CONFIG_NOVA_NETWORK_VLAN_START=100
  163. # Number of networks to support
  164. CONFIG_NOVA_NETWORK_NUMBER=1
  165. # Number of addresses in each private subnet
  166. CONFIG_NOVA_NETWORK_SIZE=255
  167. # The IP addresses of the server on which to install the Neutron
  168. # server
  169. CONFIG_NEUTRON_SERVER_HOST=172.28.1.12
  170. # The password to use for Neutron to authenticate with Keystone
  171. CONFIG_NEUTRON_KS_PW=f17a75201b5c4b9b
  172. # The password to use for Neutron to access DB
  173. CONFIG_NEUTRON_DB_PW=182405c766d2489f
  174. # A comma separated list of IP addresses on which to install Neutron
  175. # L3 agent
  176. CONFIG_NEUTRON_L3_HOSTS=172.28.1.12
  177. # The name of the bridge that the Neutron L3 agent will use for
  178. # external traffic, or 'provider' if using provider networks
  179. CONFIG_NEUTRON_L3_EXT_BRIDGE=br-ex
  180. # A comma separated list of IP addresses on which to install Neutron
  181. # DHCP agent
  182. CONFIG_NEUTRON_DHCP_HOSTS=172.28.1.12
  183. # A comma separated list of IP addresses on which to install Neutron
  184. # LBaaS agent
  185. CONFIG_NEUTRON_LBAAS_HOSTS=
  186. # The name of the L2 plugin to be used with Neutron
  187. CONFIG_NEUTRON_L2_PLUGIN=openvswitch
  188. # A comma separated list of IP addresses on which to install Neutron
  189. # metadata agent
  190. CONFIG_NEUTRON_METADATA_HOSTS=172.28.1.12
  191. # A comma separated list of IP addresses on which to install Neutron
  192. # metadata agent
  193. CONFIG_NEUTRON_METADATA_PW=fb416476612647e0
  194. # The type of network to allocate for tenant networks (eg. vlan,
  195. # local, gre)
  196. CONFIG_NEUTRON_LB_TENANT_NETWORK_TYPE=local
  197. # A comma separated list of VLAN ranges for the Neutron linuxbridge
  198. # plugin (eg. physnet1:1:4094,physnet2,physnet3:3000:3999)
  199. CONFIG_NEUTRON_LB_VLAN_RANGES=
  200. # A comma separated list of interface mappings for the Neutron
  201. # linuxbridge plugin (eg. physnet1:br-eth1,physnet2:br-eth2,physnet3
  202. # :br-eth3)
  203. CONFIG_NEUTRON_LB_INTERFACE_MAPPINGS=
  204. # Type of network to allocate for tenant networks (eg. vlan, local,
  205. # gre)
  206. CONFIG_NEUTRON_OVS_TENANT_NETWORK_TYPE=gre
  207. # A comma separated list of VLAN ranges for the Neutron openvswitch
  208. # plugin (eg. physnet1:1:4094,physnet2,physnet3:3000:3999)
  209. CONFIG_NEUTRON_OVS_VLAN_RANGES=
  210. # A comma separated list of bridge mappings for the Neutron
  211. # openvswitch plugin (eg. physnet1:br-eth1,physnet2:br-eth2,physnet3
  212. # :br-eth3)
  213. CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS=
  214. # A comma separated list of colon-separated OVS bridge:interface
  215. # pairs. The interface will be added to the associated bridge.
  216. CONFIG_NEUTRON_OVS_BRIDGE_IFACES=
  217. # A comma separated list of tunnel ranges for the Neutron openvswitch
  218. # plugin (eg. 1:1000)
  219. CONFIG_NEUTRON_OVS_TUNNEL_RANGES=1:1000
  220. # The interface for the OVS tunnel. Packstack will override the IP
  221. # address used for GRE tunnels on this hypervisor to the IP found on
  222. # the specified interface. (eg. eth1)
  223. CONFIG_NEUTRON_OVS_TUNNEL_IF=eth1
  224. # The IP address of the server on which to install the OpenStack
  225. # client packages. An admin "rc" file will also be installed
  226. CONFIG_OSCLIENT_HOST=172.28.1.132
  227. # The IP address of the server on which to install Horizon
  228. CONFIG_HORIZON_HOST=172.28.1.132
  229. # To set up Horizon communication over https set this to "y"
  230. CONFIG_HORIZON_SSL=n
  231. # PEM encoded certificate to be used for ssl on the https server,
  232. # leave blank if one should be generated, this certificate should not
  233. # require a passphrase
  234. CONFIG_SSL_CERT=
  235. # Keyfile corresponding to the certificate if one was entered
  236. CONFIG_SSL_KEY=
  237. # The IP address on which to install the Swift proxy service
  238. # (currently only single proxy is supported)
  239. CONFIG_SWIFT_PROXY_HOSTS=172.28.1.132
  240. # The password to use for the Swift to authenticate with Keystone
  241. CONFIG_SWIFT_KS_PW=6ce7e742fd67431a
  242. # A comma separated list of IP addresses on which to install the
  243. # Swift Storage services, each entry should take the format
  244. # <ipaddress>[/dev], for example 127.0.0.1/vdb will install /dev/vdb
  245. # on 127.0.0.1 as a swift storage device(packstack does not create the
  246. # filesystem, you must do this first), if /dev is omitted Packstack
  247. # will create a loopback device for a test setup
  248. CONFIG_SWIFT_STORAGE_HOSTS=172.28.1.132
  249. # Number of swift storage zones, this number MUST be no bigger than
  250. # the number of storage devices configured
  251. CONFIG_SWIFT_STORAGE_ZONES=1
  252. # Number of swift storage replicas, this number MUST be no bigger
  253. # than the number of storage zones configured
  254. CONFIG_SWIFT_STORAGE_REPLICAS=1
  255. # FileSystem type for storage nodes
  256. CONFIG_SWIFT_STORAGE_FSTYPE=ext4
  257. # Shared secret for Swift
  258. CONFIG_SWIFT_HASH=e22baec78e6d473a
  259. # Size of the swift loopback file storage device
  260. CONFIG_SWIFT_STORAGE_SIZE=2G
  261. # Whether to provision for demo usage and testing
  262. CONFIG_PROVISION_DEMO=n
  263. # The CIDR network address for the floating IP subnet
  264. CONFIG_PROVISION_DEMO_FLOATRANGE=172.24.4.224/28
  265. # Whether to configure tempest for testing
  266. CONFIG_PROVISION_TEMPEST=n
  267. # The uri of the tempest git repository to use
  268. CONFIG_PROVISION_TEMPEST_REPO_URI=https://github.com/openstack/tempest.git
  269. # The revision of the tempest git repository to use
  270. CONFIG_PROVISION_TEMPEST_REPO_REVISION=master
  271. # Whether to configure the ovs external bridge in an all-in-one
  272. # deployment
  273. CONFIG_PROVISION_ALL_IN_ONE_OVS_BRIDGE=n
  274. # The IP address of the server on which to install Heat service
  275. CONFIG_HEAT_HOST=172.28.1.132
  276. # The password used by Heat user to authenticate against MySQL
  277. CONFIG_HEAT_DB_PW=11a97ec3de95471b
  278. # The password to use for the Heat to authenticate with Keystone
  279. CONFIG_HEAT_KS_PW=c3cf3871a0b04ad3
  280. # Set to 'y' if you would like Packstack to install Heat CloudWatch
  281. # API
  282. CONFIG_HEAT_CLOUDWATCH_INSTALL=y
  283. # Set to 'y' if you would like Packstack to install Heat
  284. # CloudFormation API
  285. CONFIG_HEAT_CFN_INSTALL=y
  286. # The IP address of the server on which to install Heat CloudWatch
  287. # API service
  288. CONFIG_HEAT_CLOUDWATCH_HOST=172.28.1.132
  289. # The IP address of the server on which to install Heat
  290. # CloudFormation API service
  291. CONFIG_HEAT_CFN_HOST=172.28.1.132
  292. # The IP address of the server on which to install Ceilometer
  293. CONFIG_CEILOMETER_HOST=172.28.1.132
  294. # Secret key for signing metering messages.
  295. CONFIG_CEILOMETER_SECRET=5a876086707d49d6
  296. # The password to use for Ceilometer to authenticate with Keystone
  297. CONFIG_CEILOMETER_KS_PW=ea09ba5ef7064b29
  298. # The IP address of the server on which to install the Nagios server
  299. CONFIG_NAGIOS_HOST=172.28.1.132
  300. # The password of the nagiosadmin user on the Nagios server
  301. CONFIG_NAGIOS_PW=f1aa812ae70443fc
  302. # To subscribe each server to EPEL enter "y"
  303. CONFIG_USE_EPEL=n
  304. # A comma separated list of URLs to any additional yum repositories
  305. # to install
  306. CONFIG_REPO=
  307. # To subscribe each server with Red Hat subscription manager, include
  308. # this with CONFIG_RH_PW
  309. CONFIG_RH_USER=
  310. # To subscribe each server with Red Hat subscription manager, include
  311. # this with CONFIG_RH_USER
  312. CONFIG_RH_PW=
  313. # To subscribe each server to Red Hat Enterprise Linux 6 Server Beta
  314. # channel (only needed for Preview versions of RHOS) enter "y"
  315. CONFIG_RH_BETA_REPO=n
  316. # To subscribe each server with RHN Satellite,fill Satellite's URL
  317. # here. Note that either satellite's username/password or activation
  318. # key has to be provided
  319. CONFIG_SATELLITE_URL=
  320. # Username to access RHN Satellite
  321. CONFIG_SATELLITE_USER=
  322. # Password to access RHN Satellite
  323. CONFIG_SATELLITE_PW=
  324. # Activation key for subscription to RHN Satellite
  325. CONFIG_SATELLITE_AKEY=
  326. # Specify a path or URL to a SSL CA certificate to use
  327. CONFIG_SATELLITE_CACERT=
  328. # If required specify the profile name that should be used as an
  329. # identifier for the system in RHN Satellite
  330. CONFIG_SATELLITE_PROFILE=
  331. # Comma separated list of flags passed to rhnreg_ks. Valid flags are:
  332. # novirtinfo, norhnsd, nopackages
  333. CONFIG_SATELLITE_FLAGS=
  334. # Specify a HTTP proxy to use with RHN Satellite
  335. CONFIG_SATELLITE_PROXY=
  336. # Specify a username to use with an authenticated HTTP proxy
  337. CONFIG_SATELLITE_PROXY_USER=
  338. # Specify a password to use with an authenticated HTTP proxy.
  339. CONFIG_SATELLITE_PROXY_PW=