Advertisement
Guest User

Untitled

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