Advertisement
ibrahimza

20190418_atii-answer-file

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