Advertisement
Guest User

PACKSTACK / packstack-answers-20170227-214816_2node.txt

a guest
Mar 1st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 50.15 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 is prompted for a
  5. # password and this key is installed so the password will not be
  6. # required again.
  7. CONFIG_SSH_KEY=/root/.ssh/id_rsa.pub
  8.  
  9. # Default password to be used everywhere (overridden by passwords set
  10. # for individual services or users).
  11. CONFIG_DEFAULT_PASSWORD=password123
  12.  
  13. # The amount of service workers/threads to use for each service.
  14. # Useful to tweak when you have memory constraints. Defaults to the
  15. # amount of cores on the system.
  16. CONFIG_SERVICE_WORKERS=%{::processorcount}
  17.  
  18. # Specify 'y' to install MariaDB. ['y', 'n']
  19. CONFIG_MARIADB_INSTALL=y
  20.  
  21. # Specify 'y' to install OpenStack Image Service (glance). ['y', 'n']
  22. CONFIG_GLANCE_INSTALL=y
  23.  
  24. # Specify 'y' to install OpenStack Block Storage (cinder). ['y', 'n']
  25. CONFIG_CINDER_INSTALL=y
  26.  
  27. # Specify 'y' to install OpenStack Shared File System (manila). ['y',
  28. # 'n']
  29. CONFIG_MANILA_INSTALL=n
  30.  
  31. # Specify 'y' to install OpenStack Compute (nova). ['y', 'n']
  32. CONFIG_NOVA_INSTALL=y
  33.  
  34. # Specify 'y' to install OpenStack Networking (neutron); otherwise,
  35. # Compute Networking (nova) will be used. ['y', 'n']
  36. CONFIG_NEUTRON_INSTALL=y
  37.  
  38. # Specify 'y' to install OpenStack Dashboard (horizon). ['y', 'n']
  39. CONFIG_HORIZON_INSTALL=y
  40.  
  41. # Specify 'y' to install OpenStack Object Storage (swift). ['y', 'n']
  42. CONFIG_SWIFT_INSTALL=y
  43.  
  44. # Specify 'y' to install OpenStack Metering (ceilometer). ['y', 'n']
  45. CONFIG_CEILOMETER_INSTALL=y
  46.  
  47. # Specify 'y' to install OpenStack Telemetry Alarming (Aodh). Note
  48. # Aodh requires Ceilometer to be installed as well. ['y', 'n']
  49. CONFIG_AODH_INSTALL=y
  50.  
  51. # Specify 'y' to install OpenStack Metering as a Service (gnocchi).
  52. # ['y', 'n']
  53. CONFIG_GNOCCHI_INSTALL=y
  54.  
  55. # Specify 'y' to install OpenStack Data Processing (sahara). In case
  56. # of sahara installation packstack also installs heat.['y', 'n']
  57. CONFIG_SAHARA_INSTALL=n
  58.  
  59. # Specify 'y' to install OpenStack Orchestration (heat). ['y', 'n']
  60. CONFIG_HEAT_INSTALL=n
  61.  
  62. # Specify 'y' to install OpenStack Database (trove) ['y', 'n']
  63. CONFIG_TROVE_INSTALL=n
  64.  
  65. # Specify 'y' to install OpenStack Bare Metal Provisioning (ironic).
  66. # ['y', 'n']
  67. CONFIG_IRONIC_INSTALL=n
  68.  
  69. # Specify 'y' to install the OpenStack Client packages (command-line
  70. # tools). An admin "rc" file will also be installed. ['y', 'n']
  71. CONFIG_CLIENT_INSTALL=y
  72.  
  73. # Comma-separated list of NTP servers. Leave plain if Packstack
  74. # should not install ntpd on instances.
  75. CONFIG_NTP_SERVERS=
  76.  
  77. # Specify 'y' to install Nagios to monitor OpenStack hosts. Nagios
  78. # provides additional tools for monitoring the OpenStack environment.
  79. # ['y', 'n']
  80. CONFIG_NAGIOS_INSTALL=n
  81.  
  82. # Comma-separated list of servers to be excluded from the
  83. # installation. This is helpful if you are running Packstack a second
  84. # time with the same answer file and do not want Packstack to
  85. # overwrite these server's configurations. Leave empty if you do not
  86. # need to exclude any servers.
  87. EXCLUDE_SERVERS=
  88.  
  89. # Specify 'y' if you want to run OpenStack services in debug mode;
  90. # otherwise, specify 'n'. ['y', 'n']
  91. CONFIG_DEBUG_MODE=y
  92.  
  93. # Server on which to install OpenStack services specific to the
  94. # controller role (for example, API servers or dashboard).
  95. CONFIG_CONTROLLER_HOST=192.168.20.51
  96.  
  97. # List the servers on which to install the Compute service.
  98. CONFIG_COMPUTE_HOSTS=192.168.20.51,192.168.20.52
  99.  
  100. # List of servers on which to install the network service such as
  101. # Compute networking (nova network) or OpenStack Networking (neutron).
  102. CONFIG_NETWORK_HOSTS=192.168.20.51
  103.  
  104. # Specify 'y' if you want to use VMware vCenter as hypervisor and
  105. # storage; otherwise, specify 'n'. ['y', 'n']
  106. CONFIG_VMWARE_BACKEND=n
  107.  
  108. # Specify 'y' if you want to use unsupported parameters. This should
  109. # be used only if you know what you are doing. Issues caused by using
  110. # unsupported options will not be fixed before the next major release.
  111. # ['y', 'n']
  112. CONFIG_UNSUPPORTED=n
  113.  
  114. # Specify 'y' if you want to use subnet addresses (in CIDR format)
  115. # instead of interface names in following options:
  116. # CONFIG_NOVA_COMPUTE_PRIVIF, CONFIG_NOVA_NETWORK_PRIVIF,
  117. # CONFIG_NOVA_NETWORK_PUBIF, CONFIG_NEUTRON_OVS_BRIDGE_IFACES,
  118. # CONFIG_NEUTRON_LB_INTERFACE_MAPPINGS, CONFIG_NEUTRON_OVS_TUNNEL_IF.
  119. # This is useful for cases when interface names are not same on all
  120. # installation hosts.
  121. CONFIG_USE_SUBNETS=n
  122.  
  123. # IP address of the VMware vCenter server.
  124. CONFIG_VCENTER_HOST=
  125.  
  126. # User name for VMware vCenter server authentication.
  127. CONFIG_VCENTER_USER=
  128.  
  129. # Password for VMware vCenter server authentication.
  130. CONFIG_VCENTER_PASSWORD=
  131.  
  132. # Comma separated list of names of the VMware vCenter clusters. Note:
  133. # if multiple clusters are specified each one is mapped to one
  134. # compute, otherwise all computes are mapped to same cluster.
  135. CONFIG_VCENTER_CLUSTER_NAMES=
  136.  
  137. # (Unsupported!) Server on which to install OpenStack services
  138. # specific to storage servers such as Image or Block Storage services.
  139. CONFIG_STORAGE_HOST=192.168.20.51
  140.  
  141. # (Unsupported!) Server on which to install OpenStack services
  142. # specific to OpenStack Data Processing (sahara).
  143. CONFIG_SAHARA_HOST=192.168.20.51
  144.  
  145. # Specify 'y' to enable the EPEL repository (Extra Packages for
  146. # Enterprise Linux). ['y', 'n']
  147. CONFIG_USE_EPEL=n
  148.  
  149. # Comma-separated list of URLs for any additional yum repositories,
  150. # to use for installation.
  151. CONFIG_REPO=
  152.  
  153. # Specify 'y' to enable the RDO testing repository. ['y', 'n']
  154. CONFIG_ENABLE_RDO_TESTING=n
  155.  
  156. # To subscribe each server with Red Hat Subscription Manager, include
  157. # this with CONFIG_RH_PW.
  158. CONFIG_RH_USER=
  159.  
  160. # To subscribe each server to receive updates from a Satellite
  161. # server, provide the URL of the Satellite server. You must also
  162. # provide a user name (CONFIG_SATELLITE_USERNAME) and password
  163. # (CONFIG_SATELLITE_PASSWORD) or an access key (CONFIG_SATELLITE_AKEY)
  164. # for authentication.
  165. CONFIG_SATELLITE_URL=
  166.  
  167. # Specify a Satellite 6 Server to register to. If not specified,
  168. # Packstack will register the system to the Red Hat server. When this
  169. # option is specified, you also need to set the Satellite 6
  170. # organization (CONFIG_RH_SAT6_ORG) and an activation key
  171. # (CONFIG_RH_SAT6_KEY).
  172. CONFIG_RH_SAT6_SERVER=
  173.  
  174. # To subscribe each server with Red Hat Subscription Manager, include
  175. # this with CONFIG_RH_USER.
  176. CONFIG_RH_PW=
  177.  
  178. # Specify 'y' to enable RHEL optional repositories. ['y', 'n']
  179. CONFIG_RH_OPTIONAL=y
  180.  
  181. # HTTP proxy to use with Red Hat Subscription Manager.
  182. CONFIG_RH_PROXY=
  183.  
  184. # Specify a Satellite 6 Server organization to use when registering
  185. # the system.
  186. CONFIG_RH_SAT6_ORG=
  187.  
  188. # Specify a Satellite 6 Server activation key to use when registering
  189. # the system.
  190. CONFIG_RH_SAT6_KEY=
  191.  
  192. # Port to use for Red Hat Subscription Manager's HTTP proxy.
  193. CONFIG_RH_PROXY_PORT=
  194.  
  195. # User name to use for Red Hat Subscription Manager's HTTP proxy.
  196. CONFIG_RH_PROXY_USER=
  197.  
  198. # Password to use for Red Hat Subscription Manager's HTTP proxy.
  199. CONFIG_RH_PROXY_PW=
  200.  
  201. # User name to authenticate with the RHN Satellite server; if you
  202. # intend to use an access key for Satellite authentication, leave this
  203. # blank.
  204. CONFIG_SATELLITE_USER=
  205.  
  206. # Password to authenticate with the RHN Satellite server; if you
  207. # intend to use an access key for Satellite authentication, leave this
  208. # blank.
  209. CONFIG_SATELLITE_PW=
  210.  
  211. # Access key for the Satellite server; if you intend to use a user
  212. # name and password for Satellite authentication, leave this blank.
  213. CONFIG_SATELLITE_AKEY=
  214.  
  215. # Certificate path or URL of the certificate authority to verify that
  216. # the connection with the Satellite server is secure. If you are not
  217. # using Satellite in your deployment, leave this blank.
  218. CONFIG_SATELLITE_CACERT=
  219.  
  220. # Profile name that should be used as an identifier for the system in
  221. # RHN Satellite (if required).
  222. CONFIG_SATELLITE_PROFILE=
  223.  
  224. # Comma-separated list of flags passed to the rhnreg_ks command.
  225. # Valid flags are: novirtinfo, norhnsd, nopackages ['novirtinfo',
  226. # 'norhnsd', 'nopackages']
  227. CONFIG_SATELLITE_FLAGS=
  228.  
  229. # HTTP proxy to use when connecting to the RHN Satellite server (if
  230. # required).
  231. CONFIG_SATELLITE_PROXY=
  232.  
  233. # User name to authenticate with the Satellite-server HTTP proxy.
  234. CONFIG_SATELLITE_PROXY_USER=
  235.  
  236. # User password to authenticate with the Satellite-server HTTP proxy.
  237. CONFIG_SATELLITE_PROXY_PW=
  238.  
  239. # Specify filepath for CA cert file. If CONFIG_SSL_CACERT_SELFSIGN is
  240. # set to 'n' it has to be preexisting file.
  241. CONFIG_SSL_CACERT_FILE=/etc/pki/tls/certs/selfcert.crt
  242.  
  243. # Specify filepath for CA cert key file. If
  244. # CONFIG_SSL_CACERT_SELFSIGN is set to 'n' it has to be preexisting
  245. # file.
  246. CONFIG_SSL_CACERT_KEY_FILE=/etc/pki/tls/private/selfkey.key
  247.  
  248. # Enter the path to use to store generated SSL certificates in.
  249. CONFIG_SSL_CERT_DIR=~/packstackca/
  250.  
  251. # Specify 'y' if you want Packstack to pregenerate the CA
  252. # Certificate.
  253. CONFIG_SSL_CACERT_SELFSIGN=y
  254.  
  255. # Enter the selfsigned CAcert subject country.
  256. CONFIG_SELFSIGN_CACERT_SUBJECT_C=IN
  257.  
  258. # Enter the selfsigned CAcert subject state.
  259. CONFIG_SELFSIGN_CACERT_SUBJECT_ST=KA
  260.  
  261. # Enter the selfsigned CAcert subject location.
  262. CONFIG_SELFSIGN_CACERT_SUBJECT_L=Bangalore
  263.  
  264. # Enter the selfsigned CAcert subject organization.
  265. CONFIG_SELFSIGN_CACERT_SUBJECT_O=openstack
  266.  
  267. # Enter the selfsigned CAcert subject organizational unit.
  268. CONFIG_SELFSIGN_CACERT_SUBJECT_OU=packstack
  269.  
  270. # Enter the selfsigned CAcert subject common name.
  271. CONFIG_SELFSIGN_CACERT_SUBJECT_CN=matrix01.egiitics.com
  272.  
  273. CONFIG_SELFSIGN_CACERT_SUBJECT_MAIL=admin@matrix01.egiitics.com
  274.  
  275. # Service to be used as the AMQP broker. Allowed values are: rabbitmq
  276. # ['rabbitmq']
  277. CONFIG_AMQP_BACKEND=rabbitmq
  278.  
  279. # IP address of the server on which to install the AMQP service.
  280. CONFIG_AMQP_HOST=192.168.20.51
  281.  
  282. # Specify 'y' to enable SSL for the AMQP service. ['y', 'n']
  283. CONFIG_AMQP_ENABLE_SSL=n
  284.  
  285. # Specify 'y' to enable authentication for the AMQP service. ['y',
  286. # 'n']
  287. CONFIG_AMQP_ENABLE_AUTH=n
  288.  
  289. # Password for the NSS certificate database of the AMQP service.
  290. CONFIG_AMQP_NSS_CERTDB_PW=PW_PLACEHOLDER
  291.  
  292. # User for AMQP authentication.
  293. CONFIG_AMQP_AUTH_USER=amqp_user
  294.  
  295. # Password for AMQP authentication.
  296. CONFIG_AMQP_AUTH_PASSWORD=PW_PLACEHOLDER
  297.  
  298. # IP address of the server on which to install MariaDB. If a MariaDB
  299. # installation was not specified in CONFIG_MARIADB_INSTALL, specify
  300. # the IP address of an existing database server (a MariaDB cluster can
  301. # also be specified).
  302. CONFIG_MARIADB_HOST=192.168.20.51
  303.  
  304. # User name for the MariaDB administrative user.
  305. CONFIG_MARIADB_USER=root
  306.  
  307. # Password for the MariaDB administrative user.
  308. CONFIG_MARIADB_PW=password123
  309.  
  310. # Password to use for the Identity service (keystone) to access the
  311. # database.
  312. CONFIG_KEYSTONE_DB_PW=password123
  313.  
  314. # Enter y if cron job for removing soft deleted DB rows should be
  315. # created.
  316. CONFIG_KEYSTONE_DB_PURGE_ENABLE=True
  317.  
  318. # Default region name to use when creating tenants in the Identity
  319. # service.
  320. CONFIG_KEYSTONE_REGION=RegionOne
  321.  
  322. # Token to use for the Identity service API.
  323. CONFIG_KEYSTONE_ADMIN_TOKEN=a71cc7b921bf478aa43084d93081cff0
  324.  
  325. # Email address for the Identity service 'admin' user. Defaults to
  326. CONFIG_KEYSTONE_ADMIN_EMAIL=root@localhost
  327.  
  328. # User name for the Identity service 'admin' user. Defaults to
  329. # 'admin'.
  330. CONFIG_KEYSTONE_ADMIN_USERNAME=admin
  331.  
  332. # Password to use for the Identity service 'admin' user.
  333. CONFIG_KEYSTONE_ADMIN_PW=password123
  334.  
  335. # Password to use for the Identity service 'demo' user.
  336. CONFIG_KEYSTONE_DEMO_PW=password123
  337.  
  338. # Identity service API version string. ['v2.0', 'v3']
  339. CONFIG_KEYSTONE_API_VERSION=v2.0
  340.  
  341. # Identity service token format (UUID or PKI). The recommended format
  342. # for new deployments is UUID. ['UUID', 'PKI']
  343. CONFIG_KEYSTONE_TOKEN_FORMAT=UUID
  344.  
  345. # Name of service to use to run the Identity service (keystone or
  346. # httpd). ['keystone', 'httpd']
  347. CONFIG_KEYSTONE_SERVICE_NAME=httpd
  348.  
  349. # Type of Identity service backend (sql or ldap). ['sql', 'ldap']
  350. CONFIG_KEYSTONE_IDENTITY_BACKEND=sql
  351.  
  352. # URL for the Identity service LDAP backend.
  353. CONFIG_KEYSTONE_LDAP_URL=ldap://192.168.20.51
  354.  
  355. # User DN for the Identity service LDAP backend. Used to bind to the
  356. # LDAP server if the LDAP server does not allow anonymous
  357. # authentication.
  358. CONFIG_KEYSTONE_LDAP_USER_DN=
  359.  
  360. # User DN password for the Identity service LDAP backend.
  361. CONFIG_KEYSTONE_LDAP_USER_PASSWORD=
  362.  
  363. # Base suffix for the Identity service LDAP backend.
  364. CONFIG_KEYSTONE_LDAP_SUFFIX=
  365.  
  366. # Query scope for the Identity service LDAP backend. Use 'one' for
  367. # onelevel/singleLevel or 'sub' for subtree/wholeSubtree ('base' is
  368. # not actually used by the Identity service and is therefore
  369. # deprecated). ['base', 'one', 'sub']
  370. CONFIG_KEYSTONE_LDAP_QUERY_SCOPE=one
  371.  
  372. # Query page size for the Identity service LDAP backend.
  373. CONFIG_KEYSTONE_LDAP_PAGE_SIZE=-1
  374.  
  375. # User subtree for the Identity service LDAP backend.
  376. CONFIG_KEYSTONE_LDAP_USER_SUBTREE=
  377.  
  378. # User query filter for the Identity service LDAP backend.
  379. CONFIG_KEYSTONE_LDAP_USER_FILTER=
  380.  
  381. # User object class for the Identity service LDAP backend.
  382. CONFIG_KEYSTONE_LDAP_USER_OBJECTCLASS=
  383.  
  384. # User ID attribute for the Identity service LDAP backend.
  385. CONFIG_KEYSTONE_LDAP_USER_ID_ATTRIBUTE=
  386.  
  387. # User name attribute for the Identity service LDAP backend.
  388. CONFIG_KEYSTONE_LDAP_USER_NAME_ATTRIBUTE=
  389.  
  390. # User email address attribute for the Identity service LDAP backend.
  391. CONFIG_KEYSTONE_LDAP_USER_MAIL_ATTRIBUTE=
  392.  
  393. # User-enabled attribute for the Identity service LDAP backend.
  394. CONFIG_KEYSTONE_LDAP_USER_ENABLED_ATTRIBUTE=
  395.  
  396. # Bit mask integer applied to user-enabled attribute for the Identity
  397. # service LDAP backend. Indicate the bit that the enabled value is
  398. # stored in if the LDAP server represents "enabled" as a bit on an
  399. # integer rather than a boolean. A value of "0" indicates the mask is
  400. # not used (default). If this is not set to "0", the typical value is
  401. # "2", typically used when
  402. # "CONFIG_KEYSTONE_LDAP_USER_ENABLED_ATTRIBUTE = userAccountControl".
  403. CONFIG_KEYSTONE_LDAP_USER_ENABLED_MASK=-1
  404.  
  405. # Value of enabled attribute which indicates user is enabled for the
  406. # Identity service LDAP backend. This should match an appropriate
  407. # integer value if the LDAP server uses non-boolean (bitmask) values
  408. # to indicate whether a user is enabled or disabled. If this is not
  409. # set as 'y', the typical value is "512". This is typically used when
  410. # "CONFIG_KEYSTONE_LDAP_USER_ENABLED_ATTRIBUTE = userAccountControl".
  411. CONFIG_KEYSTONE_LDAP_USER_ENABLED_DEFAULT=TRUE
  412.  
  413. # Specify 'y' if users are disabled (not enabled) in the Identity
  414. # service LDAP backend (inverts boolean-enalbed values). Some LDAP
  415. # servers use a boolean lock attribute where "y" means an account is
  416. # disabled. Setting this to 'y' allows these lock attributes to be
  417. # used. This setting will have no effect if
  418. # "CONFIG_KEYSTONE_LDAP_USER_ENABLED_MASK" is in use. ['n', 'y']
  419. CONFIG_KEYSTONE_LDAP_USER_ENABLED_INVERT=n
  420.  
  421. # Comma-separated list of attributes stripped from LDAP user entry
  422. # upon update.
  423. CONFIG_KEYSTONE_LDAP_USER_ATTRIBUTE_IGNORE=
  424.  
  425. # Identity service LDAP attribute mapped to default_project_id for
  426. # users.
  427. CONFIG_KEYSTONE_LDAP_USER_DEFAULT_PROJECT_ID_ATTRIBUTE=
  428.  
  429. # Specify 'y' if you want to be able to create Identity service users
  430. # through the Identity service interface; specify 'n' if you will
  431. # create directly in the LDAP backend. ['n', 'y']
  432. CONFIG_KEYSTONE_LDAP_USER_ALLOW_CREATE=n
  433.  
  434. # Specify 'y' if you want to be able to update Identity service users
  435. # through the Identity service interface; specify 'n' if you will
  436. # update directly in the LDAP backend. ['n', 'y']
  437. CONFIG_KEYSTONE_LDAP_USER_ALLOW_UPDATE=n
  438.  
  439. # Specify 'y' if you want to be able to delete Identity service users
  440. # through the Identity service interface; specify 'n' if you will
  441. # delete directly in the LDAP backend. ['n', 'y']
  442. CONFIG_KEYSTONE_LDAP_USER_ALLOW_DELETE=n
  443.  
  444. # Identity service LDAP attribute mapped to password.
  445. CONFIG_KEYSTONE_LDAP_USER_PASS_ATTRIBUTE=
  446.  
  447. # DN of the group entry to hold enabled LDAP users when using enabled
  448. # emulation.
  449. CONFIG_KEYSTONE_LDAP_USER_ENABLED_EMULATION_DN=
  450.  
  451. # List of additional LDAP attributes for mapping additional attribute
  452. # mappings for users. The attribute-mapping format is
  453. # <ldap_attr>:<user_attr>, where ldap_attr is the attribute in the
  454. # LDAP entry and user_attr is the Identity API attribute.
  455. CONFIG_KEYSTONE_LDAP_USER_ADDITIONAL_ATTRIBUTE_MAPPING=
  456.  
  457. # Group subtree for the Identity service LDAP backend.
  458. CONFIG_KEYSTONE_LDAP_GROUP_SUBTREE=
  459.  
  460. # Group query filter for the Identity service LDAP backend.
  461. CONFIG_KEYSTONE_LDAP_GROUP_FILTER=
  462.  
  463. # Group object class for the Identity service LDAP backend.
  464. CONFIG_KEYSTONE_LDAP_GROUP_OBJECTCLASS=
  465.  
  466. # Group ID attribute for the Identity service LDAP backend.
  467. CONFIG_KEYSTONE_LDAP_GROUP_ID_ATTRIBUTE=
  468.  
  469. # Group name attribute for the Identity service LDAP backend.
  470. CONFIG_KEYSTONE_LDAP_GROUP_NAME_ATTRIBUTE=
  471.  
  472. # Group member attribute for the Identity service LDAP backend.
  473. CONFIG_KEYSTONE_LDAP_GROUP_MEMBER_ATTRIBUTE=
  474.  
  475. # Group description attribute for the Identity service LDAP backend.
  476. CONFIG_KEYSTONE_LDAP_GROUP_DESC_ATTRIBUTE=
  477.  
  478. # Comma-separated list of attributes stripped from LDAP group entry
  479. # upon update.
  480. CONFIG_KEYSTONE_LDAP_GROUP_ATTRIBUTE_IGNORE=
  481.  
  482. # Specify 'y' if you want to be able to create Identity service
  483. # groups through the Identity service interface; specify 'n' if you
  484. # will create directly in the LDAP backend. ['n', 'y']
  485. CONFIG_KEYSTONE_LDAP_GROUP_ALLOW_CREATE=n
  486.  
  487. # Specify 'y' if you want to be able to update Identity service
  488. # groups through the Identity service interface; specify 'n' if you
  489. # will update directly in the LDAP backend. ['n', 'y']
  490. CONFIG_KEYSTONE_LDAP_GROUP_ALLOW_UPDATE=n
  491.  
  492. # Specify 'y' if you want to be able to delete Identity service
  493. # groups through the Identity service interface; specify 'n' if you
  494. # will delete directly in the LDAP backend. ['n', 'y']
  495. CONFIG_KEYSTONE_LDAP_GROUP_ALLOW_DELETE=n
  496.  
  497. # List of additional LDAP attributes used for mapping additional
  498. # attribute mappings for groups. The attribute=mapping format is
  499. # <ldap_attr>:<group_attr>, where ldap_attr is the attribute in the
  500. # LDAP entry and group_attr is the Identity API attribute.
  501. CONFIG_KEYSTONE_LDAP_GROUP_ADDITIONAL_ATTRIBUTE_MAPPING=
  502.  
  503. # Specify 'y' if the Identity service LDAP backend should use TLS.
  504. # ['n', 'y']
  505. CONFIG_KEYSTONE_LDAP_USE_TLS=n
  506.  
  507. # CA certificate directory for Identity service LDAP backend (if TLS
  508. # is used).
  509. CONFIG_KEYSTONE_LDAP_TLS_CACERTDIR=
  510.  
  511. # CA certificate file for Identity service LDAP backend (if TLS is
  512. # used).
  513. CONFIG_KEYSTONE_LDAP_TLS_CACERTFILE=
  514.  
  515. # Certificate-checking strictness level for Identity service LDAP
  516. # backend; valid options are: never, allow, demand. ['never', 'allow',
  517. # 'demand']
  518. CONFIG_KEYSTONE_LDAP_TLS_REQ_CERT=demand
  519.  
  520. # Password to use for the Image service (glance) to access the
  521. # database.
  522. CONFIG_GLANCE_DB_PW=password123
  523.  
  524. # Password to use for the Image service to authenticate with the
  525. # Identity service.
  526. CONFIG_GLANCE_KS_PW=password123
  527.  
  528. # Storage backend for the Image service (controls how the Image
  529. # service stores disk images). Valid options are: file or swift
  530. # (Object Storage). The Object Storage service must be enabled to use
  531. # it as a working backend; otherwise, Packstack falls back to 'file'.
  532. # ['file', 'swift']
  533. CONFIG_GLANCE_BACKEND=file
  534.  
  535. # Password to use for the Block Storage service (cinder) to access
  536. # the database.
  537. CONFIG_CINDER_DB_PW=password123
  538.  
  539. # Enter y if cron job for removing soft deleted DB rows should be
  540. # created.
  541. CONFIG_CINDER_DB_PURGE_ENABLE=True
  542.  
  543. # Password to use for the Block Storage service to authenticate with
  544. # the Identity service.
  545. CONFIG_CINDER_KS_PW=password123
  546.  
  547. # Storage backend to use for the Block Storage service; valid options
  548. # are: lvm, gluster, nfs, vmdk, netapp. ['lvm', 'gluster', 'nfs',
  549. # 'vmdk', 'netapp']
  550. CONFIG_CINDER_BACKEND=lvm
  551.  
  552. # Specify 'y' to create the Block Storage volumes group. That is,
  553. # Packstack creates a raw disk image in /var/lib/cinder, and mounts it
  554. # using a loopback device. This should only be used for testing on a
  555. # proof-of-concept installation of the Block Storage service (a file-
  556. # backed volume group is not suitable for production usage). ['y',
  557. # 'n']
  558. CONFIG_CINDER_VOLUMES_CREATE=y
  559.  
  560. # Size of Block Storage volumes group. Actual volume size will be
  561. # extended with 3% more space for VG metadata. Remember that the size
  562. # of the volume group will restrict the amount of disk space that you
  563. # can expose to Compute instances, and that the specified amount must
  564. # be available on the device used for /var/lib/cinder.
  565. CONFIG_CINDER_VOLUMES_SIZE=50G
  566.  
  567. # A single or comma-separated list of Red Hat Storage (gluster)
  568. # volume shares to mount. Example: 'ip-address:/vol-name', 'domain
  569. # :/vol-name'
  570. CONFIG_CINDER_GLUSTER_MOUNTS=
  571.  
  572. # A single or comma-separated list of NFS exports to mount. Example:
  573. # 'ip-address:/export-name'
  574. CONFIG_CINDER_NFS_MOUNTS=
  575.  
  576. # Administrative user account name used to access the NetApp storage
  577. # system or proxy server.
  578. CONFIG_CINDER_NETAPP_LOGIN=
  579.  
  580. # Password for the NetApp administrative user account specified in
  581. # the CONFIG_CINDER_NETAPP_LOGIN parameter.
  582. CONFIG_CINDER_NETAPP_PASSWORD=
  583.  
  584. # Hostname (or IP address) for the NetApp storage system or proxy
  585. # server.
  586. CONFIG_CINDER_NETAPP_HOSTNAME=
  587.  
  588. # The TCP port to use for communication with the storage system or
  589. # proxy. If not specified, Data ONTAP drivers will use 80 for HTTP and
  590. # 443 for HTTPS; E-Series will use 8080 for HTTP and 8443 for HTTPS.
  591. # Defaults to 80.
  592. CONFIG_CINDER_NETAPP_SERVER_PORT=80
  593.  
  594. # Storage family type used on the NetApp storage system; valid
  595. # options are ontap_7mode for using Data ONTAP operating in 7-Mode,
  596. # ontap_cluster for using clustered Data ONTAP, or E-Series for NetApp
  597. # E-Series. Defaults to ontap_cluster. ['ontap_7mode',
  598. # 'ontap_cluster', 'eseries']
  599. CONFIG_CINDER_NETAPP_STORAGE_FAMILY=ontap_cluster
  600.  
  601. # The transport protocol used when communicating with the NetApp
  602. # storage system or proxy server. Valid values are http or https.
  603. # Defaults to 'http'. ['http', 'https']
  604. CONFIG_CINDER_NETAPP_TRANSPORT_TYPE=http
  605.  
  606. # Storage protocol to be used on the data path with the NetApp
  607. # storage system; valid options are iscsi, fc, nfs. Defaults to nfs.
  608. # ['iscsi', 'fc', 'nfs']
  609. CONFIG_CINDER_NETAPP_STORAGE_PROTOCOL=nfs
  610.  
  611. # Quantity to be multiplied by the requested volume size to ensure
  612. # enough space is available on the virtual storage server (Vserver) to
  613. # fulfill the volume creation request. Defaults to 1.0.
  614. CONFIG_CINDER_NETAPP_SIZE_MULTIPLIER=1.0
  615.  
  616. # Time period (in minutes) that is allowed to elapse after the image
  617. # is last accessed, before it is deleted from the NFS image cache.
  618. # When a cache-cleaning cycle begins, images in the cache that have
  619. # not been accessed in the last M minutes, where M is the value of
  620. # this parameter, are deleted from the cache to create free space on
  621. # the NFS share. Defaults to 720.
  622. CONFIG_CINDER_NETAPP_EXPIRY_THRES_MINUTES=720
  623.  
  624. # If the percentage of available space for an NFS share has dropped
  625. # below the value specified by this parameter, the NFS image cache is
  626. # cleaned. Defaults to 20.
  627. CONFIG_CINDER_NETAPP_THRES_AVL_SIZE_PERC_START=20
  628.  
  629. # When the percentage of available space on an NFS share has reached
  630. # the percentage specified by this parameter, the driver stops
  631. # clearing files from the NFS image cache that have not been accessed
  632. # in the last M minutes, where M is the value of the
  633. # CONFIG_CINDER_NETAPP_EXPIRY_THRES_MINUTES parameter. Defaults to 60.
  634. CONFIG_CINDER_NETAPP_THRES_AVL_SIZE_PERC_STOP=60
  635.  
  636. # Single or comma-separated list of NetApp NFS shares for Block
  637. # Storage to use. Format: ip-address:/export-name. Defaults to ''.
  638. CONFIG_CINDER_NETAPP_NFS_SHARES=
  639.  
  640. # File with the list of available NFS shares. Defaults to
  641. # '/etc/cinder/shares.conf'.
  642. CONFIG_CINDER_NETAPP_NFS_SHARES_CONFIG=/etc/cinder/shares.conf
  643.  
  644. # This parameter is only utilized when the storage protocol is
  645. # configured to use iSCSI or FC. This parameter is used to restrict
  646. # provisioning to the specified controller volumes. Specify the value
  647. # of this parameter to be a comma separated list of NetApp controller
  648. # volume names to be used for provisioning. Defaults to ''.
  649. CONFIG_CINDER_NETAPP_VOLUME_LIST=
  650.  
  651. # The vFiler unit on which provisioning of block storage volumes will
  652. # be done. This parameter is only used by the driver when connecting
  653. # to an instance with a storage family of Data ONTAP operating in
  654. # 7-Mode Only use this parameter when utilizing the MultiStore feature
  655. # on the NetApp storage system. Defaults to ''.
  656. CONFIG_CINDER_NETAPP_VFILER=
  657.  
  658. # The name of the config.conf stanza for a Data ONTAP (7-mode) HA
  659. # partner. This option is only used by the driver when connecting to
  660. # an instance with a storage family of Data ONTAP operating in 7-Mode,
  661. # and it is required if the storage protocol selected is FC. Defaults
  662. # to ''.
  663. CONFIG_CINDER_NETAPP_PARTNER_BACKEND_NAME=
  664.  
  665. # This option specifies the virtual storage server (Vserver) name on
  666. # the storage cluster on which provisioning of block storage volumes
  667. # should occur. Defaults to ''.
  668. CONFIG_CINDER_NETAPP_VSERVER=
  669.  
  670. # Restricts provisioning to the specified controllers. Value must be
  671. # a comma-separated list of controller hostnames or IP addresses to be
  672. # used for provisioning. This option is only utilized when the storage
  673. # family is configured to use E-Series. Defaults to ''.
  674. CONFIG_CINDER_NETAPP_CONTROLLER_IPS=
  675.  
  676. # Password for the NetApp E-Series storage array. Defaults to ''.
  677. CONFIG_CINDER_NETAPP_SA_PASSWORD=
  678.  
  679. # This option is used to define how the controllers in the E-Series
  680. # storage array will work with the particular operating system on the
  681. # hosts that are connected to it. Defaults to 'linux_dm_mp'
  682. CONFIG_CINDER_NETAPP_ESERIES_HOST_TYPE=linux_dm_mp
  683.  
  684. # Path to the NetApp E-Series proxy application on a proxy server.
  685. # The value is combined with the value of the
  686. # CONFIG_CINDER_NETAPP_TRANSPORT_TYPE, CONFIG_CINDER_NETAPP_HOSTNAME,
  687. # and CONFIG_CINDER_NETAPP_HOSTNAME options to create the URL used by
  688. # the driver to connect to the proxy application. Defaults to
  689. # '/devmgr/v2'.
  690. CONFIG_CINDER_NETAPP_WEBSERVICE_PATH=/devmgr/v2
  691.  
  692. # Restricts provisioning to the specified storage pools. Only dynamic
  693. # disk pools are currently supported. The value must be a comma-
  694. # separated list of disk pool names to be used for provisioning.
  695. # Defaults to ''.
  696. CONFIG_CINDER_NETAPP_STORAGE_POOLS=
  697.  
  698. # Password to use for OpenStack Bare Metal Provisioning (ironic) to
  699. # access the database.
  700. CONFIG_IRONIC_DB_PW=PW_PLACEHOLDER
  701.  
  702. # Password to use for OpenStack Bare Metal Provisioning to
  703. # authenticate with the Identity service.
  704. CONFIG_IRONIC_KS_PW=PW_PLACEHOLDER
  705.  
  706. # Enter y if cron job for removing soft deleted DB rows should be
  707. # created.
  708. CONFIG_NOVA_DB_PURGE_ENABLE=True
  709.  
  710. # Password to use for the Compute service (nova) to access the
  711. # database.
  712. CONFIG_NOVA_DB_PW=password123
  713.  
  714. # Password to use for the Compute service to authenticate with the
  715. # Identity service.
  716. CONFIG_NOVA_KS_PW=password123
  717.  
  718. # Overcommitment ratio for virtual to physical CPUs. Specify 1.0 to
  719. # disable CPU overcommitment.
  720. CONFIG_NOVA_SCHED_CPU_ALLOC_RATIO=16.0
  721.  
  722. # Overcommitment ratio for virtual to physical RAM. Specify 1.0 to
  723. # disable RAM overcommitment.
  724. CONFIG_NOVA_SCHED_RAM_ALLOC_RATIO=1.5
  725.  
  726. # Protocol used for instance migration. Valid options are: tcp and
  727. # ssh. Note that by default, the Compute user is created with the
  728. # /sbin/nologin shell so that the SSH protocol will not work. To make
  729. # the SSH protocol work, you must configure the Compute user on
  730. # compute hosts manually. ['tcp', 'ssh']
  731. CONFIG_NOVA_COMPUTE_MIGRATE_PROTOCOL=tcp
  732.  
  733. # Manager that runs the Compute service.
  734. CONFIG_NOVA_COMPUTE_MANAGER=nova.compute.manager.ComputeManager
  735.  
  736. # PEM encoded certificate to be used for ssl on the https server,
  737. # leave blank if one should be generated, this certificate should not
  738. # require a passphrase. If CONFIG_HORIZON_SSL is set to 'n' this
  739. # parameter is ignored.
  740. CONFIG_VNC_SSL_CERT=
  741.  
  742. # SSL keyfile corresponding to the certificate if one was entered. If
  743. # CONFIG_HORIZON_SSL is set to 'n' this parameter is ignored.
  744. CONFIG_VNC_SSL_KEY=
  745.  
  746. # Enter the PCI passthrough array of hash in JSON style for
  747. # controller eg. [{"vendor_id":"1234", "product_id":"5678",
  748. # "name":"default"}, {...}]
  749. CONFIG_NOVA_PCI_ALIAS=
  750.  
  751. # Enter the PCI passthrough whitelist array of hash in JSON style for
  752. # controller eg. [{"vendor_id":"1234", "product_id":"5678",
  753. # "name':"default"}, {...}]
  754. CONFIG_NOVA_PCI_PASSTHROUGH_WHITELIST=
  755.  
  756. # The hypervisor driver to use with Nova. Can be either 'qemu' or
  757. # 'kvm'. Defaults to 'qemu' on virtual machines and 'kvm' on bare
  758. # metal hardware.
  759. CONFIG_NOVA_LIBVIRT_VIRT_TYPE=%{::default_hypervisor}
  760.  
  761. # Private interface for flat DHCP on the Compute servers.
  762. CONFIG_NOVA_COMPUTE_PRIVIF=
  763.  
  764. # Compute Network Manager. ['^nova\.network\.manager\.\w+Manager$']
  765. CONFIG_NOVA_NETWORK_MANAGER=nova.network.manager.FlatDHCPManager
  766.  
  767. # Public interface on the Compute network server.
  768. CONFIG_NOVA_NETWORK_PUBIF=eth0
  769.  
  770. # Private interface for flat DHCP on the Compute network server.
  771. CONFIG_NOVA_NETWORK_PRIVIF=
  772.  
  773. # IP Range for flat DHCP. ['^[\:\.\da-fA-f]+(\/\d+){0,1}$']
  774. CONFIG_NOVA_NETWORK_FIXEDRANGE=192.168.32.0/22
  775.  
  776. # IP Range for floating IP addresses. ['^[\:\.\da-
  777. # fA-f]+(\/\d+){0,1}$']
  778. CONFIG_NOVA_NETWORK_FLOATRANGE=10.3.4.0/22
  779.  
  780. # Specify 'y' to automatically assign a floating IP to new instances.
  781. # ['y', 'n']
  782. CONFIG_NOVA_NETWORK_AUTOASSIGNFLOATINGIP=n
  783.  
  784. # First VLAN for private networks (Compute networking).
  785. CONFIG_NOVA_NETWORK_VLAN_START=100
  786.  
  787. # Number of networks to support (Compute networking).
  788. CONFIG_NOVA_NETWORK_NUMBER=1
  789.  
  790. # Number of addresses in each private subnet (Compute networking).
  791. CONFIG_NOVA_NETWORK_SIZE=255
  792.  
  793. # Password to use for OpenStack Networking (neutron) to authenticate
  794. # with the Identity service.
  795. CONFIG_NEUTRON_KS_PW=password123
  796.  
  797. # The password to use for OpenStack Networking to access the
  798. # database.
  799. CONFIG_NEUTRON_DB_PW=password123
  800.  
  801. # The name of the Open vSwitch bridge (or empty for linuxbridge) for
  802. # the OpenStack Networking L3 agent to use for external traffic.
  803. # Specify 'provider' if you intend to use a provider network to handle
  804. # external traffic.
  805. CONFIG_NEUTRON_L3_EXT_BRIDGE=br-ex
  806.  
  807. # Password for the OpenStack Networking metadata agent.
  808. CONFIG_NEUTRON_METADATA_PW=password123
  809.  
  810. # Specify 'y' to install OpenStack Networking's Load-Balancing-
  811. # as-a-Service (LBaaS). ['y', 'n']
  812. CONFIG_LBAAS_INSTALL=n
  813.  
  814. # Specify 'y' to install OpenStack Networking's L3 Metering agent
  815. # ['y', 'n']
  816. CONFIG_NEUTRON_METERING_AGENT_INSTALL=y
  817.  
  818. # Specify 'y' to configure OpenStack Networking's Firewall-
  819. # as-a-Service (FWaaS). ['y', 'n']
  820. CONFIG_NEUTRON_FWAAS=n
  821.  
  822. # Specify 'y' to configure OpenStack Networking's VPN-as-a-Service
  823. # (VPNaaS). ['y', 'n']
  824. CONFIG_NEUTRON_VPNAAS=n
  825.  
  826. # Comma-separated list of network-type driver entry points to be
  827. # loaded from the neutron.ml2.type_drivers namespace. ['local',
  828. # 'flat', 'vlan', 'gre', 'vxlan']
  829. CONFIG_NEUTRON_ML2_TYPE_DRIVERS=vxlan
  830.  
  831. # Comma-separated, ordered list of network types to allocate as
  832. # tenant networks. The 'local' value is only useful for single-box
  833. # testing and provides no connectivity between hosts. ['local',
  834. # 'vlan', 'gre', 'vxlan']
  835. CONFIG_NEUTRON_ML2_TENANT_NETWORK_TYPES=vxlan
  836.  
  837. # Comma-separated ordered list of networking mechanism driver entry
  838. # points to be loaded from the neutron.ml2.mechanism_drivers
  839. # namespace. ['logger', 'test', 'linuxbridge', 'openvswitch',
  840. # 'hyperv', 'ncs', 'arista', 'cisco_nexus', 'mlnx', 'l2population',
  841. # 'sriovnicswitch']
  842. CONFIG_NEUTRON_ML2_MECHANISM_DRIVERS=openvswitch
  843.  
  844. # Comma-separated list of physical_network names with which flat
  845. # networks can be created. Use * to allow flat networks with arbitrary
  846. # physical_network names.
  847. CONFIG_NEUTRON_ML2_FLAT_NETWORKS=*
  848.  
  849. # Comma-separated list of <physical_network>:<vlan_min>:<vlan_max> or
  850. # <physical_network> specifying physical_network names usable for VLAN
  851. # provider and tenant networks, as well as ranges of VLAN tags on each
  852. # available for allocation to tenant networks.
  853. CONFIG_NEUTRON_ML2_VLAN_RANGES=
  854.  
  855. # Comma-separated list of <tun_min>:<tun_max> tuples enumerating
  856. # ranges of GRE tunnel IDs that are available for tenant-network
  857. # allocation. A tuple must be an array with tun_max +1 - tun_min >
  858. # 1000000.
  859. CONFIG_NEUTRON_ML2_TUNNEL_ID_RANGES=
  860.  
  861. # Comma-separated list of addresses for VXLAN multicast group. If
  862. # left empty, disables VXLAN from sending allocate broadcast traffic
  863. # (disables multicast VXLAN mode). Should be a Multicast IP (v4 or v6)
  864. # address.
  865. CONFIG_NEUTRON_ML2_VXLAN_GROUP=239.1.1.1
  866.  
  867. # Comma-separated list of <vni_min>:<vni_max> tuples enumerating
  868. # ranges of VXLAN VNI IDs that are available for tenant network
  869. # allocation. Minimum value is 0 and maximum value is 16777215.
  870. CONFIG_NEUTRON_ML2_VNI_RANGES=10:100
  871.  
  872. # Name of the L2 agent to be used with OpenStack Networking.
  873. # ['linuxbridge', 'openvswitch']
  874. CONFIG_NEUTRON_L2_AGENT=openvswitch
  875.  
  876. # Comma separated list of supported PCI vendor devices defined by
  877. # vendor_id:product_id according to the PCI ID Repository.
  878. CONFIG_NEUTRON_ML2_SUPPORTED_PCI_VENDOR_DEVS=['15b3:1004', '8086:10ca']
  879.  
  880. # Specify 'y' if the sriov agent is required
  881. CONFIG_NEUTRON_ML2_SRIOV_AGENT_REQUIRED=n
  882.  
  883. # Comma-separated list of interface mappings for the OpenStack
  884. # Networking ML2 SRIOV agent. Each tuple in the list must be in the
  885. # format <physical_network>:<net_interface>. Example:
  886. # physnet1:eth1,physnet2:eth2,physnet3:eth3.
  887. CONFIG_NEUTRON_ML2_SRIOV_INTERFACE_MAPPINGS=
  888.  
  889. # Comma-separated list of interface mappings for the OpenStack
  890. # Networking linuxbridge plugin. Each tuple in the list must be in the
  891. # format <physical_network>:<net_interface>. Example:
  892. # physnet1:eth1,physnet2:eth2,physnet3:eth3.
  893. CONFIG_NEUTRON_LB_INTERFACE_MAPPINGS=
  894.  
  895. # Comma-separated list of bridge mappings for the OpenStack
  896. # Networking Open vSwitch plugin. Each tuple in the list must be in
  897. # the format <physical_network>:<ovs_bridge>. Example: physnet1:br-
  898. # eth1,physnet2:br-eth2,physnet3:br-eth3
  899. CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS=
  900.  
  901. # Comma-separated list of colon-separated Open vSwitch
  902. # <bridge>:<interface> pairs. The interface will be added to the
  903. # associated bridge. If you desire the bridge to be persistent a value
  904. # must be added to this directive, also
  905. # CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS must be set in order to create
  906. # the proper port. This can be achieved from the command line by
  907. # issuing the following command: packstack --allinone --os-neutron-
  908. # ovs-bridge-mappings=ext-net:br-ex --os-neutron-ovs-bridge-interfaces
  909. # =br-ex:eth0
  910. CONFIG_NEUTRON_OVS_BRIDGE_IFACES=
  911.  
  912. # Comma-separated list of Open vSwitch bridges that must be created
  913. # and connected to interfaces in compute nodes when flat or vlan type
  914. # drivers are enabled. These bridges must exist in
  915. # CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS and
  916. # CONFIG_NEUTRON_OVS_BRIDGE_IFACES. Example: --os-neutron-ovs-bridges-
  917. # compute=br-vlan --os-neutron-ovs-bridge-mappings="extnet:br-
  918. # ex,physnet1:br-vlan" --os-neutron-ovs-bridge-interfaces="br-ex:eth1
  919. # ,br-vlan:eth2"
  920. CONFIG_NEUTRON_OVS_BRIDGES_COMPUTE=
  921.  
  922. # Interface for the Open vSwitch tunnel. Packstack overrides the IP
  923. # address used for tunnels on this hypervisor to the IP found on the
  924. # specified interface (for example, eth1).
  925. CONFIG_NEUTRON_OVS_TUNNEL_IF=
  926.  
  927. # Comma-separated list of subnets (for example,
  928. # 192.168.10.0/24,192.168.11.0/24) used for sending tunneling packets.
  929. # This is used to configure IP filtering to accept tunneling packets
  930. # from these subnets instead of specific IP addresses of peer nodes.
  931. # This is useful when you add existing nodes to EXCLUDE_SERVERS
  932. # because, in this case, packstack cannot modify the IP filtering of
  933. # the existing nodes.
  934. CONFIG_NEUTRON_OVS_TUNNEL_SUBNETS=
  935.  
  936. # VXLAN UDP port.
  937. CONFIG_NEUTRON_OVS_VXLAN_UDP_PORT=4789
  938.  
  939. # Password to use for the OpenStack File Share service (manila) to
  940. # access the database.
  941. CONFIG_MANILA_DB_PW=PW_PLACEHOLDER
  942.  
  943. # Password to use for the OpenStack File Share service (manila) to
  944. # authenticate with the Identity service.
  945. CONFIG_MANILA_KS_PW=PW_PLACEHOLDER
  946.  
  947. # Backend for the OpenStack File Share service (manila); valid
  948. # options are: generic, netapp, glusternative, or glusternfs.
  949. # ['generic', 'netapp', 'glusternative', 'glusternfs']
  950. CONFIG_MANILA_BACKEND=generic
  951.  
  952. # Denotes whether the driver should handle the responsibility of
  953. # managing share servers. This must be set to false if the driver is
  954. # to operate without managing share servers. Defaults to 'false'
  955. # ['true', 'false']
  956. CONFIG_MANILA_NETAPP_DRV_HANDLES_SHARE_SERVERS=false
  957.  
  958. # The transport protocol used when communicating with the storage
  959. # system or proxy server. Valid values are 'http' and 'https'.
  960. # Defaults to 'https'. ['https', 'http']
  961. CONFIG_MANILA_NETAPP_TRANSPORT_TYPE=https
  962.  
  963. # Administrative user account name used to access the NetApp storage
  964. # system. Defaults to ''.
  965. CONFIG_MANILA_NETAPP_LOGIN=admin
  966.  
  967. # Password for the NetApp administrative user account specified in
  968. # the CONFIG_MANILA_NETAPP_LOGIN parameter. Defaults to ''.
  969. CONFIG_MANILA_NETAPP_PASSWORD=
  970.  
  971. # Hostname (or IP address) for the NetApp storage system or proxy
  972. # server. Defaults to ''.
  973. CONFIG_MANILA_NETAPP_SERVER_HOSTNAME=
  974.  
  975. # The storage family type used on the storage system; valid values
  976. # are ontap_cluster for clustered Data ONTAP. Defaults to
  977. # 'ontap_cluster'. ['ontap_cluster']
  978. CONFIG_MANILA_NETAPP_STORAGE_FAMILY=ontap_cluster
  979.  
  980. # The TCP port to use for communication with the storage system or
  981. # proxy server. If not specified, Data ONTAP drivers will use 80 for
  982. # HTTP and 443 for HTTPS. Defaults to '443'.
  983. CONFIG_MANILA_NETAPP_SERVER_PORT=443
  984.  
  985. # Pattern for searching available aggregates for NetApp provisioning.
  986. # Defaults to '(.*)'.
  987. CONFIG_MANILA_NETAPP_AGGREGATE_NAME_SEARCH_PATTERN=(.*)
  988.  
  989. # Name of aggregate on which to create the NetApp root volume. This
  990. # option only applies when the option
  991. # CONFIG_MANILA_NETAPP_DRV_HANDLES_SHARE_SERVERS is set to True.
  992. CONFIG_MANILA_NETAPP_ROOT_VOLUME_AGGREGATE=
  993.  
  994. # NetApp root volume name. Defaults to 'root'.
  995. CONFIG_MANILA_NETAPP_ROOT_VOLUME_NAME=root
  996.  
  997. # This option specifies the storage virtual machine (previously
  998. # called a Vserver) name on the storage cluster on which provisioning
  999. # of shared file systems should occur. This option only applies when
  1000. # the option driver_handles_share_servers is set to False. Defaults to
  1001. # ''.
  1002. CONFIG_MANILA_NETAPP_VSERVER=
  1003.  
  1004. # Denotes whether the driver should handle the responsibility of
  1005. # managing share servers. This must be set to false if the driver is
  1006. # to operate without managing share servers. Defaults to 'true'.
  1007. # ['true', 'false']
  1008. CONFIG_MANILA_GENERIC_DRV_HANDLES_SHARE_SERVERS=true
  1009.  
  1010. # Volume name template for Manila service. Defaults to 'manila-
  1011. # share-%s'.
  1012. CONFIG_MANILA_GENERIC_VOLUME_NAME_TEMPLATE=manila-share-%s
  1013.  
  1014. # Share mount path for Manila service. Defaults to '/shares'.
  1015. CONFIG_MANILA_GENERIC_SHARE_MOUNT_PATH=/shares
  1016.  
  1017. # Location of disk image for Manila service instance. Defaults to '
  1018. CONFIG_MANILA_SERVICE_IMAGE_LOCATION=https://www.dropbox.com/s/vi5oeh10q1qkckh/ubuntu_1204_nfs_cifs.qcow2
  1019.  
  1020. # User in Manila service instance.
  1021. CONFIG_MANILA_SERVICE_INSTANCE_USER=ubuntu
  1022.  
  1023. # Password to service instance user.
  1024. CONFIG_MANILA_SERVICE_INSTANCE_PASSWORD=ubuntu
  1025.  
  1026. # Type of networking that the backend will use. A more detailed
  1027. # description of each option is available in the Manila docs. Defaults
  1028. # to 'neutron'. ['neutron', 'nova-network', 'standalone']
  1029. CONFIG_MANILA_NETWORK_TYPE=neutron
  1030.  
  1031. # Gateway IPv4 address that should be used. Required. Defaults to ''.
  1032. CONFIG_MANILA_NETWORK_STANDALONE_GATEWAY=
  1033.  
  1034. # Network mask that will be used. Can be either decimal like '24' or
  1035. # binary like '255.255.255.0'. Required. Defaults to ''.
  1036. CONFIG_MANILA_NETWORK_STANDALONE_NETMASK=
  1037.  
  1038. # Set it if network has segmentation (VLAN, VXLAN, etc). It will be
  1039. # assigned to share-network and share drivers will be able to use this
  1040. # for network interfaces within provisioned share servers. Optional.
  1041. # Example: 1001. Defaults to ''.
  1042. CONFIG_MANILA_NETWORK_STANDALONE_SEG_ID=
  1043.  
  1044. # Can be IP address, range of IP addresses or list of addresses or
  1045. # ranges. Contains addresses from IP network that are allowed to be
  1046. # used. If empty, then will be assumed that all host addresses from
  1047. # network can be used. Optional. Examples: 10.0.0.10 or
  1048. # 10.0.0.10-10.0.0.20 or
  1049. # 10.0.0.10-10.0.0.20,10.0.0.30-10.0.0.40,10.0.0.50. Defaults to ''.
  1050. CONFIG_MANILA_NETWORK_STANDALONE_IP_RANGE=
  1051.  
  1052. # IP version of network. Optional. Defaults to '4'. ['4', '6']
  1053. CONFIG_MANILA_NETWORK_STANDALONE_IP_VERSION=4
  1054.  
  1055. # List of GlusterFS servers that can be used to create shares. Each
  1056. # GlusterFS server should be of the form [remoteuser@]<volserver>, and
  1057. # they are assumed to belong to distinct Gluster clusters.
  1058. CONFIG_MANILA_GLUSTERFS_SERVERS=
  1059.  
  1060. # Path of Manila host's private SSH key file.
  1061. CONFIG_MANILA_GLUSTERFS_NATIVE_PATH_TO_PRIVATE_KEY=
  1062.  
  1063. # Regular expression template used to filter GlusterFS volumes for
  1064. # share creation. The regex template can optionally (ie. with support
  1065. # of the GlusterFS backend) contain the #{size} parameter which
  1066. # matches an integer (sequence of digits) in which case the value
  1067. # shall be intepreted as size of the volume in GB. Examples: "manila-
  1068. # share-volume-d+$", "manila-share-volume-#{size}G-d+$"; with matching
  1069. # volume names, respectively: "manila-share-volume-12", "manila-share-
  1070. # volume-3G-13". In latter example, the number that matches "#{size}",
  1071. # that is, 3, is an indication that the size of volume is 3G.
  1072. CONFIG_MANILA_GLUSTERFS_VOLUME_PATTERN=
  1073.  
  1074. # Specifies the GlusterFS volume to be mounted on the Manila host.
  1075. # For e.g: [remoteuser@]<volserver>:/<volid>
  1076. CONFIG_MANILA_GLUSTERFS_TARGET=
  1077.  
  1078. # Base directory containing mount points for Gluster volumes.
  1079. CONFIG_MANILA_GLUSTERFS_MOUNT_POINT_BASE=
  1080.  
  1081. # Type of NFS server that mediate access to the Gluster volumes
  1082. # (Gluster or Ganesha).
  1083. CONFIG_MANILA_GLUSTERFS_NFS_SERVER_TYPE=gluster
  1084.  
  1085. # Path of Manila host's private SSH key file.
  1086. CONFIG_MANILA_GLUSTERFS_PATH_TO_PRIVATE_KEY=
  1087.  
  1088. # Remote Ganesha server node's IP address.
  1089. CONFIG_MANILA_GLUSTERFS_GANESHA_SERVER_IP=
  1090.  
  1091. # Specify 'y' to set up Horizon communication over https. ['y', 'n']
  1092. CONFIG_HORIZON_SSL=n
  1093.  
  1094. # Secret key to use for Horizon Secret Encryption Key.
  1095. CONFIG_HORIZON_SECRET_KEY=27648818f96b4f0c861409ad6ace093a
  1096.  
  1097. # PEM-encoded certificate to be used for SSL connections on the https
  1098. # server. To generate a certificate, leave blank.
  1099. CONFIG_HORIZON_SSL_CERT=
  1100.  
  1101. # SSL keyfile corresponding to the certificate if one was specified.
  1102. # The certificate should not require a passphrase.
  1103. CONFIG_HORIZON_SSL_KEY=
  1104.  
  1105. CONFIG_HORIZON_SSL_CACERT=
  1106.  
  1107. # Password to use for the Object Storage service to authenticate with
  1108. # the Identity service.
  1109. CONFIG_SWIFT_KS_PW=password123
  1110.  
  1111. # Comma-separated list of devices to use as storage device for Object
  1112. # Storage. Each entry must take the format /path/to/dev (for example,
  1113. # specifying /dev/vdb installs /dev/vdb as the Object Storage storage
  1114. # device; Packstack does not create the filesystem, you must do this
  1115. # first). If left empty, Packstack creates a loopback device for test
  1116. # setup.
  1117. CONFIG_SWIFT_STORAGES=
  1118.  
  1119. # Number of Object Storage storage zones; this number MUST be no
  1120. # larger than the number of configured storage devices.
  1121. CONFIG_SWIFT_STORAGE_ZONES=1
  1122.  
  1123. # Number of Object Storage storage replicas; this number MUST be no
  1124. # larger than the number of configured storage zones.
  1125. CONFIG_SWIFT_STORAGE_REPLICAS=1
  1126.  
  1127. # File system type for storage nodes. ['xfs', 'ext4']
  1128. CONFIG_SWIFT_STORAGE_FSTYPE=ext4
  1129.  
  1130. # Custom seed number to use for swift_hash_path_suffix in
  1131. # /etc/swift/swift.conf. If you do not provide a value, a seed number
  1132. # is automatically generated.
  1133. CONFIG_SWIFT_HASH=57fe051836c14fa0
  1134.  
  1135. # Size of the Object Storage loopback file storage device.
  1136. CONFIG_SWIFT_STORAGE_SIZE=10G
  1137.  
  1138. # Password used by Orchestration service user to authenticate against
  1139. # the database.
  1140. CONFIG_HEAT_DB_PW=PW_PLACEHOLDER
  1141.  
  1142. # Encryption key to use for authentication in the Orchestration
  1143. # database (16, 24, or 32 chars).
  1144. CONFIG_HEAT_AUTH_ENC_KEY=db269cad0e5f4f30
  1145.  
  1146. # Password to use for the Orchestration service to authenticate with
  1147. # the Identity service.
  1148. CONFIG_HEAT_KS_PW=PW_PLACEHOLDER
  1149.  
  1150. # Specify 'y' to install the Orchestration CloudWatch API. ['y', 'n']
  1151. CONFIG_HEAT_CLOUDWATCH_INSTALL=n
  1152.  
  1153. # Specify 'y' to install the Orchestration CloudFormation API. ['y',
  1154. # 'n']
  1155. CONFIG_HEAT_CFN_INSTALL=n
  1156.  
  1157. # Name of the Identity domain for Orchestration.
  1158. CONFIG_HEAT_DOMAIN=heat
  1159.  
  1160. # Name of the Identity domain administrative user for Orchestration.
  1161. CONFIG_HEAT_DOMAIN_ADMIN=heat_admin
  1162.  
  1163. # Password for the Identity domain administrative user for
  1164. # Orchestration.
  1165. CONFIG_HEAT_DOMAIN_PASSWORD=PW_PLACEHOLDER
  1166.  
  1167. # Specify 'y' to provision for demo usage and testing. ['y', 'n']
  1168. CONFIG_PROVISION_DEMO=y
  1169.  
  1170. # Specify 'y' to configure the OpenStack Integration Test Suite
  1171. # (tempest) for testing. The test suite requires OpenStack Networking
  1172. # to be installed. ['y', 'n']
  1173. CONFIG_PROVISION_TEMPEST=n
  1174.  
  1175. # CIDR network address for the floating IP subnet.
  1176. CONFIG_PROVISION_DEMO_FLOATRANGE=169.144.197.96/28
  1177.  
  1178. # The name to be assigned to the demo image in Glance (default
  1179. # "cirros").
  1180. CONFIG_PROVISION_IMAGE_NAME=cirros
  1181.  
  1182. # A URL or local file location for an image to download and provision
  1183. # in Glance (defaults to a URL for a recent "cirros" image).
  1184. CONFIG_PROVISION_IMAGE_URL=http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img
  1185.  
  1186. # Format for the demo image (default "qcow2").
  1187. CONFIG_PROVISION_IMAGE_FORMAT=qcow2
  1188.  
  1189. # User to use when connecting to instances booted from the demo
  1190. # image.
  1191. CONFIG_PROVISION_IMAGE_SSH_USER=cirros
  1192.  
  1193. # Name of the uec image created in Glance used in tempest tests
  1194. # (default "cirros-uec").
  1195. CONFIG_PROVISION_UEC_IMAGE_NAME=cirros-uec
  1196.  
  1197. # URL of the kernel image copied to Glance image for uec image
  1198. # (defaults to a URL for a recent "cirros" uec image).
  1199. CONFIG_PROVISION_UEC_IMAGE_KERNEL_URL=http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-kernel
  1200.  
  1201. # URL of the ramdisk image copied to Glance image for uec image
  1202. # (defaults to a URL for a recent "cirros" uec image).
  1203. CONFIG_PROVISION_UEC_IMAGE_RAMDISK_URL=http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-initramfs
  1204.  
  1205. # URL of the disk image copied to Glance image for uec image
  1206. # (defaults to a URL for a recent "cirros" uec image).
  1207. CONFIG_PROVISION_UEC_IMAGE_DISK_URL=http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img
  1208.  
  1209. CONFIG_TEMPEST_HOST=
  1210.  
  1211. # Name of the Integration Test Suite provisioning user. If you do not
  1212. # provide a user name, Tempest is configured in a standalone mode.
  1213. CONFIG_PROVISION_TEMPEST_USER=
  1214.  
  1215. # Password to use for the Integration Test Suite provisioning user.
  1216. CONFIG_PROVISION_TEMPEST_USER_PW=PW_PLACEHOLDER
  1217.  
  1218. # CIDR network address for the floating IP subnet.
  1219. CONFIG_PROVISION_TEMPEST_FLOATRANGE=172.24.4.224/28
  1220.  
  1221. # URI of the Integration Test Suite git repository.
  1222. CONFIG_PROVISION_TEMPEST_REPO_URI=https://github.com/openstack/tempest.git
  1223.  
  1224. # Revision (branch) of the Integration Test Suite git repository.
  1225. CONFIG_PROVISION_TEMPEST_REPO_REVISION=master
  1226.  
  1227. # Specify 'y' to run Tempest smoke test as last step of installation.
  1228. CONFIG_RUN_TEMPEST=n
  1229.  
  1230. # Test suites to run, example: "smoke dashboard TelemetryAlarming".
  1231. # Optional, defaults to "smoke".
  1232. CONFIG_RUN_TEMPEST_TESTS=smoke
  1233.  
  1234. # Specify 'y' to configure the Open vSwitch external bridge for an
  1235. # all-in-one deployment (the L3 external bridge acts as the gateway
  1236. # for virtual machines). ['y', 'n']
  1237. CONFIG_PROVISION_OVS_BRIDGE=y
  1238.  
  1239. # Password to use for Gnocchi to access the database.
  1240. CONFIG_GNOCCHI_DB_PW=password123
  1241.  
  1242. # Password to use for Gnocchi to authenticate with the Identity
  1243. # service.
  1244. CONFIG_GNOCCHI_KS_PW=password123
  1245.  
  1246. # Secret key for signing Telemetry service (ceilometer) messages.
  1247. CONFIG_CEILOMETER_SECRET=68e414b540a24d8e
  1248.  
  1249. # Password to use for Telemetry to authenticate with the Identity
  1250. # service.
  1251. CONFIG_CEILOMETER_KS_PW=password123
  1252.  
  1253. # Ceilometer service name. ['httpd', 'ceilometer']
  1254. CONFIG_CEILOMETER_SERVICE_NAME=httpd
  1255.  
  1256. # Backend driver for Telemetry's group membership coordination.
  1257. # ['redis', 'none']
  1258. CONFIG_CEILOMETER_COORDINATION_BACKEND=redis
  1259.  
  1260. # Backend driver for Telemetry's metering backend configuration.
  1261. # ['database', 'gnocchi']
  1262. CONFIG_CEILOMETER_METERING_BACKEND=database
  1263.  
  1264. # IP address of the server on which to install MongoDB.
  1265. CONFIG_MONGODB_HOST=192.168.20.51
  1266.  
  1267. # IP address of the server on which to install the Redis master
  1268. # server.
  1269. CONFIG_REDIS_MASTER_HOST=192.168.20.51
  1270.  
  1271. # Port on which the Redis server(s) listens.
  1272. CONFIG_REDIS_PORT=6379
  1273.  
  1274. # Specify 'y' to have Redis try to use HA. ['y', 'n']
  1275. CONFIG_REDIS_HA=n
  1276.  
  1277. # Hosts on which to install Redis slaves.
  1278. CONFIG_REDIS_SLAVE_HOSTS=
  1279.  
  1280. # Hosts on which to install Redis sentinel servers.
  1281. CONFIG_REDIS_SENTINEL_HOSTS=
  1282.  
  1283. # Host to configure as the Redis coordination sentinel.
  1284. CONFIG_REDIS_SENTINEL_CONTACT_HOST=
  1285.  
  1286. # Port on which Redis sentinel servers listen.
  1287. CONFIG_REDIS_SENTINEL_PORT=26379
  1288.  
  1289. # Quorum value for Redis sentinel servers.
  1290. CONFIG_REDIS_SENTINEL_QUORUM=2
  1291.  
  1292. # Name of the master server watched by the Redis sentinel. ['[a-z]+']
  1293. CONFIG_REDIS_MASTER_NAME=mymaster
  1294.  
  1295. # Password to use for Telemetry Alarming to authenticate with the
  1296. # Identity service.
  1297. CONFIG_AODH_KS_PW=password123
  1298.  
  1299. # Password to use for OpenStack Database-as-a-Service (trove) to
  1300. # access the database.
  1301. CONFIG_TROVE_DB_PW=PW_PLACEHOLDER
  1302.  
  1303. # Password to use for OpenStack Database-as-a-Service to authenticate
  1304. # with the Identity service.
  1305. CONFIG_TROVE_KS_PW=PW_PLACEHOLDER
  1306.  
  1307. # User name to use when OpenStack Database-as-a-Service connects to
  1308. # the Compute service.
  1309. CONFIG_TROVE_NOVA_USER=trove
  1310.  
  1311. # Tenant to use when OpenStack Database-as-a-Service connects to the
  1312. # Compute service.
  1313. CONFIG_TROVE_NOVA_TENANT=services
  1314.  
  1315. # Password to use when OpenStack Database-as-a-Service connects to
  1316. # the Compute service.
  1317. CONFIG_TROVE_NOVA_PW=PW_PLACEHOLDER
  1318.  
  1319. # Password to use for OpenStack Data Processing (sahara) to access
  1320. # the database.
  1321. CONFIG_SAHARA_DB_PW=PW_PLACEHOLDER
  1322.  
  1323. # Password to use for OpenStack Data Processing to authenticate with
  1324. # the Identity service.
  1325. CONFIG_SAHARA_KS_PW=PW_PLACEHOLDER
  1326.  
  1327. # Password of the nagiosadmin user on the Nagios server.
  1328. CONFIG_NAGIOS_PW=PW_PLACEHOLDER
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement