Advertisement
Guest User

OpenStack-nova

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