Advertisement
alvise72

Untitled

Jan 5th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 14.87 KB | None | 0 0
  1. [general]
  2.  
  3. # Path to a Public key to install on servers. If a usable key has not
  4. # been installed on the remote servers the user will be prompted for a
  5. # password and this key will be installed so the password will not be
  6. # required again
  7. CONFIG_SSH_KEY=/root/.ssh/id_rsa.pub
  8.  
  9. # Set to 'y' if you would like Packstack to install MySQL
  10. CONFIG_MYSQL_INSTALL=y
  11.  
  12. # Set to 'y' if you would like Packstack to install OpenStack Image
  13. # Service (Glance)
  14. CONFIG_GLANCE_INSTALL=y
  15.  
  16. # Set to 'y' if you would like Packstack to install OpenStack Block
  17. # Storage (Cinder)
  18. CONFIG_CINDER_INSTALL=n
  19.  
  20. # Set to 'y' if you would like Packstack to install OpenStack Compute
  21. # (Nova)
  22. CONFIG_NOVA_INSTALL=y
  23.  
  24. # Set to 'y' if you would like Packstack to install OpenStack
  25. # Networking (Neutron)
  26. CONFIG_NEUTRON_INSTALL=y
  27.  
  28. # Set to 'y' if you would like Packstack to install OpenStack
  29. # Dashboard (Horizon)
  30. CONFIG_HORIZON_INSTALL=y
  31.  
  32. # Set to 'y' if you would like Packstack to install OpenStack Object
  33. # Storage (Swift)
  34. CONFIG_SWIFT_INSTALL=n
  35.  
  36. # Set to 'y' if you would like Packstack to install OpenStack
  37. # Metering (Ceilometer)
  38. CONFIG_CEILOMETER_INSTALL=n
  39.  
  40. # Set to 'y' if you would like Packstack to install OpenStack
  41. # Orchestration (Heat)
  42. CONFIG_HEAT_INSTALL=n
  43.  
  44. # Set to 'y' if you would like Packstack to install the OpenStack
  45. # Client packages. An admin "rc" file will also be installed
  46. CONFIG_CLIENT_INSTALL=y
  47.  
  48. # Comma separated list of NTP servers. Leave plain if Packstack
  49. # should not install ntpd on instances.
  50. CONFIG_NTP_SERVERS=
  51.  
  52. # Set to 'y' if you would like Packstack to install Nagios to monitor
  53. # OpenStack hosts
  54. CONFIG_NAGIOS_INSTALL=n
  55.  
  56. # Comma separated list of servers to be excluded from installation in
  57. # case you are running Packstack the second time with the same answer
  58. # file and don't want Packstack to touch these servers. Leave plain if
  59. # you don't need to exclude any server.
  60. EXCLUDE_SERVERS=
  61.  
  62. # The IP address of the server on which to install MySQL
  63. CONFIG_MYSQL_HOST=10.0.0.10
  64.  
  65. # Username for the MySQL admin user
  66. CONFIG_MYSQL_USER=root
  67.  
  68. # Password for the MySQL admin user
  69. CONFIG_MYSQL_PW=admin
  70.  
  71. # The IP address of the server on which to install the QPID service
  72. CONFIG_QPID_HOST=10.0.0.11
  73.  
  74. # Enable SSL for the QPID service
  75. CONFIG_QPID_ENABLE_SSL=n
  76.  
  77. # Enable Authentication for the QPID service
  78. CONFIG_QPID_ENABLE_AUTH=n
  79.  
  80. # The password for the NSS certificate database of the QPID service
  81. CONFIG_QPID_NSS_CERTDB_PW=2d4aedff64bb48e48d48055eda47a67d
  82.  
  83. # The port in which the QPID service listens to SSL connections
  84. CONFIG_QPID_SSL_PORT=5671
  85.  
  86. # The filename of the certificate that the QPID service is going to
  87. # use
  88. CONFIG_QPID_SSL_CERT_FILE=/etc/pki/tls/certs/qpid_selfcert.pem
  89.  
  90. # The filename of the private key that the QPID service is going to
  91. # use
  92. CONFIG_QPID_SSL_KEY_FILE=/etc/pki/tls/private/qpid_selfkey.pem
  93.  
  94. # Auto Generates self signed SSL certificate and key
  95. CONFIG_QPID_SSL_SELF_SIGNED=y
  96.  
  97. # User for qpid authentication
  98. CONFIG_QPID_AUTH_USER=qpid_user
  99.  
  100. # Password for user authentication
  101. CONFIG_QPID_AUTH_PASSWORD=088ce7c564ab4300
  102.  
  103. # The IP address of the server on which to install Keystone
  104. CONFIG_KEYSTONE_HOST=10.0.0.11
  105.  
  106. # The password to use for the Keystone to access DB
  107. CONFIG_KEYSTONE_DB_PW=f0f18a8144154ee7
  108.  
  109. # The token to use for the Keystone service api
  110. CONFIG_KEYSTONE_ADMIN_TOKEN=1274dc61484d41de884a30c440fd8551
  111.  
  112. # The password to use for the Keystone admin user
  113. CONFIG_KEYSTONE_ADMIN_PW=admin
  114.  
  115. # The password to use for the Keystone demo user
  116. CONFIG_KEYSTONE_DEMO_PW=demo
  117.  
  118. # Kestone token format. Use either UUID or PKI
  119. CONFIG_KEYSTONE_TOKEN_FORMAT=PKI
  120.  
  121. # The IP address of the server on which to install Glance
  122. CONFIG_GLANCE_HOST=10.0.0.11
  123.  
  124. # The password to use for the Glance to access DB
  125. CONFIG_GLANCE_DB_PW=6ce0c375a3414f3f
  126.  
  127. # The password to use for the Glance to authenticate with Keystone
  128. CONFIG_GLANCE_KS_PW=013e74c12d614a75
  129.  
  130. # The IP address of the server on which to install Cinder
  131. CONFIG_CINDER_HOST=10.0.0.10
  132.  
  133. # The password to use for the Cinder to access DB
  134. CONFIG_CINDER_DB_PW=67999d0875774690
  135.  
  136. # The password to use for the Cinder to authenticate with Keystone
  137. CONFIG_CINDER_KS_PW=0e8b9e123c9b49d9
  138.  
  139. # The Cinder backend to use, valid options are: lvm, gluster, nfs
  140. CONFIG_CINDER_BACKEND=lvm
  141.  
  142. # Create Cinder's volumes group. This should only be done for testing
  143. # on a proof-of-concept installation of Cinder.  This will create a
  144. # file-backed volume group and is not suitable for production usage.
  145. CONFIG_CINDER_VOLUMES_CREATE=y
  146.  
  147. # Cinder's volumes group size. Note that actual volume size will be
  148. # extended with 3% more space for VG metadata.
  149. CONFIG_CINDER_VOLUMES_SIZE=20G
  150.  
  151. # A single or comma separated list of gluster volume shares to mount,
  152. # eg: ip-address:/vol-name, domain:/vol-name
  153. CONFIG_CINDER_GLUSTER_MOUNTS=
  154.  
  155. # A single or comma seprated list of NFS exports to mount, eg: ip-
  156. # address:/export-name
  157. CONFIG_CINDER_NFS_MOUNTS=
  158.  
  159. # The IP address of the server on which to install the Nova API
  160. # service
  161. CONFIG_NOVA_API_HOST=10.0.0.11
  162.  
  163. # The IP address of the server on which to install the Nova Cert
  164. # service
  165. CONFIG_NOVA_CERT_HOST=10.0.0.11
  166.  
  167. # The IP address of the server on which to install the Nova VNC proxy
  168. CONFIG_NOVA_VNCPROXY_HOST=10.0.0.11
  169.  
  170. # A comma separated list of IP addresses on which to install the Nova
  171. # Compute services
  172. CONFIG_NOVA_COMPUTE_HOSTS=10.0.0.15
  173.  
  174. # The IP address of the server on which to install the Nova Conductor
  175. # service
  176. CONFIG_NOVA_CONDUCTOR_HOST=10.0.0.11
  177.  
  178. # The password to use for the Nova to access DB
  179. CONFIG_NOVA_DB_PW=dd544abe020c4672
  180.  
  181. # The password to use for the Nova to authenticate with Keystone
  182. CONFIG_NOVA_KS_PW=f44ce9d3a4114130
  183.  
  184. # The IP address of the server on which to install the Nova Scheduler
  185. # service
  186. CONFIG_NOVA_SCHED_HOST=10.0.0.11
  187.  
  188. # The overcommitment ratio for virtual to physical CPUs. Set to 1.0
  189. # to disable CPU overcommitment
  190. CONFIG_NOVA_SCHED_CPU_ALLOC_RATIO=16.0
  191.  
  192. # The overcommitment ratio for virtual to physical RAM. Set to 1.0 to
  193. # disable RAM overcommitment
  194. CONFIG_NOVA_SCHED_RAM_ALLOC_RATIO=1.5
  195.  
  196. # Private interface for Flat DHCP on the Nova compute servers
  197. CONFIG_NOVA_COMPUTE_PRIVIF=eth1
  198.  
  199. # The list of IP addresses of the server on which to install the Nova
  200. # Network service
  201. CONFIG_NOVA_NETWORK_HOSTS=10.0.0.10
  202.  
  203. # Nova network manager
  204. CONFIG_NOVA_NETWORK_MANAGER=nova.network.manager.FlatDHCPManager
  205.  
  206. # Public interface on the Nova network server
  207. CONFIG_NOVA_NETWORK_PUBIF=eth0
  208.  
  209. # Private interface for network manager on the Nova network server
  210. CONFIG_NOVA_NETWORK_PRIVIF=eth1
  211.  
  212. # IP Range for network manager
  213. CONFIG_NOVA_NETWORK_FIXEDRANGE=192.168.32.0/22
  214.  
  215. # IP Range for Floating IP's
  216. CONFIG_NOVA_NETWORK_FLOATRANGE=10.3.4.0/22
  217.  
  218. # Name of the default floating pool to which the specified floating
  219. # ranges are added to
  220. CONFIG_NOVA_NETWORK_DEFAULTFLOATINGPOOL=nova
  221.  
  222. # Automatically assign a floating IP to new instances
  223. CONFIG_NOVA_NETWORK_AUTOASSIGNFLOATINGIP=n
  224.  
  225. # First VLAN for private networks
  226. CONFIG_NOVA_NETWORK_VLAN_START=100
  227.  
  228. # Number of networks to support
  229. CONFIG_NOVA_NETWORK_NUMBER=1
  230.  
  231. # Number of addresses in each private subnet
  232. CONFIG_NOVA_NETWORK_SIZE=255
  233.  
  234. # The IP addresses of the server on which to install the Neutron
  235. # server
  236. CONFIG_NEUTRON_SERVER_HOST=10.0.0.11
  237.  
  238. # The password to use for Neutron to authenticate with Keystone
  239. CONFIG_NEUTRON_KS_PW=9393fb659c404c46
  240.  
  241. # The password to use for Neutron to access DB
  242. CONFIG_NEUTRON_DB_PW=f5bad036f015441c
  243.  
  244. # A comma separated list of IP addresses on which to install Neutron
  245. # L3 agent
  246. CONFIG_NEUTRON_L3_HOSTS=10.0.0.13
  247.  
  248. # The name of the bridge that the Neutron L3 agent will use for
  249. # external traffic, or 'provider' if using provider networks
  250. CONFIG_NEUTRON_L3_EXT_BRIDGE=br-ex
  251.  
  252. # A comma separated list of IP addresses on which to install Neutron
  253. # DHCP agent
  254. CONFIG_NEUTRON_DHCP_HOSTS=10.0.0.13
  255.  
  256. # A comma separated list of IP addresses on which to install Neutron
  257. # LBaaS agent
  258. CONFIG_NEUTRON_LBAAS_HOSTS=10.0.0.13
  259.  
  260. # The name of the L2 plugin to be used with Neutron
  261. CONFIG_NEUTRON_L2_PLUGIN=openvswitch
  262.  
  263. # A comma separated list of IP addresses on which to install Neutron
  264. # metadata agent
  265. CONFIG_NEUTRON_METADATA_HOSTS=10.0.0.13
  266.  
  267. # A comma separated list of IP addresses on which to install Neutron
  268. # metadata agent
  269. CONFIG_NEUTRON_METADATA_PW=a43ccb9fc44b4efd
  270.  
  271. # The type of network to allocate for tenant networks (eg. vlan,
  272. # local, gre)
  273. CONFIG_NEUTRON_LB_TENANT_NETWORK_TYPE=local
  274.  
  275. # A comma separated list of VLAN ranges for the Neutron linuxbridge
  276. # plugin (eg. physnet1:1:4094,physnet2,physnet3:3000:3999)
  277. CONFIG_NEUTRON_LB_VLAN_RANGES=
  278.  
  279. # A comma separated list of interface mappings for the Neutron
  280. # linuxbridge plugin (eg. physnet1:br-eth1,physnet2:br-eth2,physnet3
  281. # :br-eth3)
  282. CONFIG_NEUTRON_LB_INTERFACE_MAPPINGS=
  283.  
  284. # Type of network to allocate for tenant networks (eg. vlan, local,
  285. # gre)
  286. CONFIG_NEUTRON_OVS_TENANT_NETWORK_TYPE=vlan
  287.  
  288. # A comma separated list of VLAN ranges for the Neutron openvswitch
  289. # plugin (eg. physnet1:1:4094,physnet2,physnet3:3000:3999)
  290. CONFIG_NEUTRON_OVS_VLAN_RANGES=physnet1:1:4000
  291.  
  292. # A comma separated list of bridge mappings for the Neutron
  293. # openvswitch plugin (eg. physnet1:br-eth1,physnet2:br-eth2,physnet3
  294. # :br-eth3)
  295. CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS=physnet1:br-ex
  296.  
  297. # A comma separated list of colon-separated OVS bridge:interface
  298. # pairs. The interface will be added to the associated bridge.
  299. CONFIG_NEUTRON_OVS_BRIDGE_IFACES=br-ex:eth0
  300.  
  301. # A comma separated list of tunnel ranges for the Neutron openvswitch
  302. # plugin
  303. CONFIG_NEUTRON_OVS_TUNNEL_RANGES=
  304.  
  305. # Override the IP used for GRE tunnels on this hypervisor to the IP
  306. # found on the specified interface (defaults to the HOST IP)
  307. CONFIG_NEUTRON_OVS_TUNNEL_IF=
  308.  
  309. # The IP address of the server on which to install the OpenStack
  310. # client packages. An admin "rc" file will also be installed
  311. CONFIG_OSCLIENT_HOST=10.0.0.10
  312.  
  313. # The IP address of the server on which to install Horizon
  314. CONFIG_HORIZON_HOST=10.0.0.10
  315.  
  316. # To set up Horizon communication over https set this to "y"
  317. CONFIG_HORIZON_SSL=n
  318.  
  319. # PEM encoded certificate to be used for ssl on the https server,
  320. # leave blank if one should be generated, this certificate should not
  321. # require a passphrase
  322. CONFIG_SSL_CERT=
  323.  
  324. # Keyfile corresponding to the certificate if one was entered
  325. CONFIG_SSL_KEY=
  326.  
  327. # The IP address on which to install the Swift proxy service
  328. # (currently only single proxy is supported)
  329. CONFIG_SWIFT_PROXY_HOSTS=10.0.0.10
  330.  
  331. # The password to use for the Swift to authenticate with Keystone
  332. CONFIG_SWIFT_KS_PW=927195460c6d4195
  333.  
  334. # A comma separated list of IP addresses on which to install the
  335. # Swift Storage services, each entry should take the format
  336. # <ipaddress>[/dev], for example 127.0.0.1/vdb will install /dev/vdb
  337. # on 127.0.0.1 as a swift storage device(packstack does not create the
  338. # filesystem, you must do this first), if /dev is omitted Packstack
  339. # will create a loopback device for a test setup
  340. CONFIG_SWIFT_STORAGE_HOSTS=10.0.0.10
  341.  
  342. # Number of swift storage zones, this number MUST be no bigger than
  343. # the number of storage devices configured
  344. CONFIG_SWIFT_STORAGE_ZONES=1
  345.  
  346. # Number of swift storage replicas, this number MUST be no bigger
  347. # than the number of storage zones configured
  348. CONFIG_SWIFT_STORAGE_REPLICAS=1
  349.  
  350. # FileSystem type for storage nodes
  351. CONFIG_SWIFT_STORAGE_FSTYPE=ext4
  352.  
  353. # Shared secret for Swift
  354. CONFIG_SWIFT_HASH=4e6988f81937424c
  355.  
  356. # Size of the swift loopback file storage device
  357. CONFIG_SWIFT_STORAGE_SIZE=2G
  358.  
  359. # Whether to provision for demo usage and testing
  360. CONFIG_PROVISION_DEMO=n
  361.  
  362. # The CIDR network address for the floating IP subnet
  363. CONFIG_PROVISION_DEMO_FLOATRANGE=172.24.4.224/28
  364.  
  365. # Whether to configure tempest for testing
  366. CONFIG_PROVISION_TEMPEST=n
  367.  
  368. # The uri of the tempest git repository to use
  369. CONFIG_PROVISION_TEMPEST_REPO_URI=https://github.com/openstack/tempest.git
  370.  
  371. # The revision of the tempest git repository to use
  372. CONFIG_PROVISION_TEMPEST_REPO_REVISION=master
  373.  
  374. # Whether to configure the ovs external bridge in an all-in-one
  375. # deployment
  376. CONFIG_PROVISION_ALL_IN_ONE_OVS_BRIDGE=n
  377.  
  378. # The IP address of the server on which to install Heat service
  379. CONFIG_HEAT_HOST=10.0.0.10
  380.  
  381. # The password used by Heat user to authenticate against MySQL
  382. CONFIG_HEAT_DB_PW=7cbf1e4b834e4272
  383.  
  384. # The password to use for the Heat to authenticate with Keystone
  385. CONFIG_HEAT_KS_PW=33aefcee999048aa
  386.  
  387. # Set to 'y' if you would like Packstack to install Heat CloudWatch
  388. # API
  389. CONFIG_HEAT_CLOUDWATCH_INSTALL=n
  390.  
  391. # Set to 'y' if you would like Packstack to install Heat
  392. # CloudFormation API
  393. CONFIG_HEAT_CFN_INSTALL=n
  394.  
  395. # The IP address of the server on which to install Heat CloudWatch
  396. # API service
  397. CONFIG_HEAT_CLOUDWATCH_HOST=10.0.0.10
  398.  
  399. # The IP address of the server on which to install Heat
  400. # CloudFormation API service
  401. CONFIG_HEAT_CFN_HOST=10.0.0.10
  402.  
  403. # The IP address of the server on which to install Ceilometer
  404. CONFIG_CEILOMETER_HOST=10.0.0.10
  405.  
  406. # Secret key for signing metering messages.
  407. CONFIG_CEILOMETER_SECRET=bc645dc3dde44a4e
  408.  
  409. # The password to use for Ceilometer to authenticate with Keystone
  410. CONFIG_CEILOMETER_KS_PW=f154543137764790
  411.  
  412. # The IP address of the server on which to install the Nagios server
  413. CONFIG_NAGIOS_HOST=10.0.0.10
  414.  
  415. # The password of the nagiosadmin user on the Nagios server
  416. CONFIG_NAGIOS_PW=a3461362b4e1462d
  417.  
  418. # To subscribe each server to EPEL enter "y"
  419. CONFIG_USE_EPEL=y
  420.  
  421. # A comma separated list of URLs to any additional yum repositories
  422. # to install
  423. CONFIG_REPO=
  424.  
  425. # To subscribe each server with Red Hat subscription manager, include
  426. # this with CONFIG_RH_PW
  427. CONFIG_RH_USER=
  428.  
  429. # To subscribe each server with Red Hat subscription manager, include
  430. # this with CONFIG_RH_USER
  431. CONFIG_RH_PW=
  432.  
  433. # To subscribe each server to Red Hat Enterprise Linux 6 Server Beta
  434. # channel (only needed for Preview versions of RHOS) enter "y"
  435. CONFIG_RH_BETA_REPO=n
  436.  
  437. # To subscribe each server with RHN Satellite,fill Satellite's URL
  438. # here. Note that either satellite's username/password or activation
  439. # key has to be provided
  440. CONFIG_SATELLITE_URL=
  441.  
  442. # Username to access RHN Satellite
  443. CONFIG_SATELLITE_USER=
  444.  
  445. # Password to access RHN Satellite
  446. CONFIG_SATELLITE_PW=
  447.  
  448. # Activation key for subscription to RHN Satellite
  449. CONFIG_SATELLITE_AKEY=
  450.  
  451. # Specify a path or URL to a SSL CA certificate to use
  452. CONFIG_SATELLITE_CACERT=
  453.  
  454. # If required specify the profile name that should be used as an
  455. # identifier for the system in RHN Satellite
  456. CONFIG_SATELLITE_PROFILE=
  457.  
  458. # Comma separated list of flags passed to rhnreg_ks. Valid flags are:
  459. # novirtinfo, norhnsd, nopackages
  460. CONFIG_SATELLITE_FLAGS=
  461.  
  462. # Specify a HTTP proxy to use with RHN Satellite
  463. CONFIG_SATELLITE_PROXY=
  464.  
  465. # Specify a username to use with an authenticated HTTP proxy
  466. CONFIG_SATELLITE_PROXY_USER=
  467.  
  468. # Specify a password to use with an authenticated HTTP proxy.
  469. CONFIG_SATELLITE_PROXY_PW=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement