<Centos7+Packstack学习Openstack Mitaka>之(二) packstack-answers-file

前端之家收集整理的这篇文章主要介绍了<Centos7+Packstack学习Openstack Mitaka>之(二) packstack-answers-file前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

上一篇中所使用的packstack安装配置文件如下:

  1. [general]
  2.  
  3.  
  4.  
  5. # Path to a public key to install on servers. If a usable key has not
  6.  
  7. # been installed on the remote servers,the user is prompted for a
  8.  
  9. # password and this key is installed so the password will not be
  10.  
  11. # required again.
  12.  
  13. CONFIG_SSH_KEY=/root/.ssh/id_rsa.pub
  14.  
  15.  
  16.  
  17. # Default password to be used everywhere (overridden by passwords set
  18.  
  19. # for individual services or users).
  20.  
  21. CONFIG_DEFAULT_PASSWORD=
  22.  
  23.  
  24.  
  25. # The amount of service workers/threads to use for each service.
  26.  
  27. # Useful to tweak when you have memory constraints. Defaults to the
  28.  
  29. # amount of cores on the system.
  30.  
  31. CONFIG_SERVICE_WORKERS=%{::processorcount}
  32.  
  33.  
  34.  
  35. # Specify 'y' to install MariaDB. ['y','n']
  36.  
  37. CONFIG_MARIADB_INSTALL=y
  38.  
  39.  
  40.  
  41. # Specify 'y' to install OpenStack Image Service (glance). ['y','n']
  42.  
  43. CONFIG_GLANCE_INSTALL=y
  44.  
  45.  
  46.  
  47. # Specify 'y' to install OpenStack Block Storage (cinder). ['y','n']
  48.  
  49. CONFIG_CINDER_INSTALL=y
  50.  
  51.  
  52.  
  53. # Specify 'y' to install OpenStack Shared File System (manila). ['y',
  54.  
  55. # 'n']
  56.  
  57. CONFIG_MANILA_INSTALL=y
  58.  
  59.  
  60.  
  61. # Specify 'y' to install OpenStack Compute (nova). ['y','n']
  62.  
  63. CONFIG_NOVA_INSTALL=y
  64.  
  65.  
  66.  
  67. # Specify 'y' to install OpenStack Networking (neutron); otherwise,
  68.  
  69. # Compute Networking (nova) will be used. ['y','n']
  70.  
  71. CONFIG_NEUTRON_INSTALL=y
  72.  
  73.  
  74.  
  75. # Specify 'y' to install OpenStack Dashboard (horizon). ['y','n']
  76.  
  77. CONFIG_HORIZON_INSTALL=y
  78.  
  79.  
  80.  
  81. # Specify 'y' to install OpenStack Object Storage (swift). ['y','n']
  82.  
  83. CONFIG_SWIFT_INSTALL=y
  84.  
  85.  
  86.  
  87. # Specify 'y' to install OpenStack Metering (ceilometer). ['y','n']
  88.  
  89. CONFIG_CEILOMETER_INSTALL=y
  90.  
  91.  
  92.  
  93. # Specify 'y' to install OpenStack Telemetry Alarming (Aodh). Note
  94.  
  95. # Aodh requires Ceilometer to be installed as well. ['y','n']
  96.  
  97. CONFIG_AODH_INSTALL=y
  98.  
  99.  
  100.  
  101. # Specify 'y' to install OpenStack Metering as a Service (gnocchi).
  102.  
  103. # ['y','n']
  104.  
  105. CONFIG_GNOCCHI_INSTALL=y
  106.  
  107.  
  108.  
  109. # Specify 'y' to install OpenStack Data Processing (sahara). In case
  110.  
  111. # of sahara installation packstack also installs heat.['y','n']
  112.  
  113. CONFIG_SAHARA_INSTALL=n
  114.  
  115.  
  116.  
  117. # Specify 'y' to install OpenStack Orchestration (heat). ['y','n']
  118.  
  119. CONFIG_HEAT_INSTALL=n
  120.  
  121.  
  122.  
  123. # Specify 'y' to install OpenStack Database (trove) ['y','n']
  124.  
  125. CONFIG_TROVE_INSTALL=n
  126.  
  127.  
  128.  
  129. # Specify 'y' to install OpenStack Bare Metal Provisioning (ironic).
  130.  
  131. # ['y','n']
  132.  
  133. CONFIG_IRONIC_INSTALL=n
  134.  
  135.  
  136.  
  137. # Specify 'y' to install the OpenStack Client packages (command-line
  138.  
  139. # tools). An admin "rc" file will also be installed. ['y','n']
  140.  
  141. CONFIG_CLIENT_INSTALL=y
  142.  
  143.  
  144.  
  145. # Comma-separated list of NTP servers. Leave plain if Packstack
  146.  
  147. # should not install ntpd on instances.
  148.  
  149. CONFIG_NTP_SERVERS=
  150.  
  151.  
  152.  
  153. # Specify 'y' to install Nagios to monitor OpenStack hosts. Nagios
  154.  
  155. # provides additional tools for monitoring the OpenStack environment.
  156.  
  157. # ['y','n']
  158.  
  159. CONFIG_NAGIOS_INSTALL=y
  160.  
  161.  
  162.  
  163. # Comma-separated list of servers to be excluded from the
  164.  
  165. # installation. This is helpful if you are running Packstack a second
  166.  
  167. # time with the same answer file and do not want Packstack to
  168.  
  169. # overwrite these server's configurations. Leave empty if you do not
  170.  
  171. # need to exclude any servers.
  172.  
  173. EXCLUDE_SERVERS=
  174.  
  175.  
  176.  
  177. # Specify 'y' if you want to run OpenStack services in debug mode;
  178.  
  179. # otherwise,specify 'n'. ['y','n']
  180.  
  181. CONFIG_DEBUG_MODE=n
  182.  
  183.  
  184.  
  185. # Server on which to install OpenStack services specific to the
  186.  
  187. # controller role (for example,API servers or dashboard).
  188.  
  189. CONFIG_CONTROLLER_HOST=10.0.2.15
  190.  
  191.  
  192.  
  193. # List the servers on which to install the Compute service.
  194.  
  195. CONFIG_COMPUTE_HOSTS=10.0.2.15
  196.  
  197.  
  198.  
  199. # List of servers on which to install the network service such as
  200.  
  201. # Compute networking (nova network) or OpenStack Networking (neutron).
  202.  
  203. CONFIG_NETWORK_HOSTS=10.0.2.15
  204.  
  205.  
  206.  
  207. # Specify 'y' if you want to use VMware vCenter as hypervisor and
  208.  
  209. # storage; otherwise,'n']
  210.  
  211. CONFIG_VMWARE_BACKEND=n
  212.  
  213.  
  214.  
  215. # Specify 'y' if you want to use unsupported parameters. This should
  216.  
  217. # be used only if you know what you are doing. Issues caused by using
  218.  
  219. # unsupported options will not be fixed before the next major release.
  220.  
  221. # ['y','n']
  222.  
  223. CONFIG_UNSUPPORTED=n
  224.  
  225.  
  226.  
  227. # Specify 'y' if you want to use subnet addresses (in CIDR format)
  228.  
  229. # instead of interface names in following options:
  230.  
  231. # CONFIG_NOVA_COMPUTE_PRIVIF,CONFIG_NOVA_NETWORK_PRIVIF,
  232.  
  233. # CONFIG_NOVA_NETWORK_PUBIF,CONFIG_NEUTRON_OVS_BRIDGE_IFACES,
  234.  
  235. # CONFIG_NEUTRON_LB_INTERFACE_MAPPINGS,CONFIG_NEUTRON_OVS_TUNNEL_IF.
  236.  
  237. # This is useful for cases when interface names are not same on all
  238.  
  239. # installation hosts.
  240.  
  241. CONFIG_USE_SUBNETS=n
  242.  
  243.  
  244.  
  245. # IP address of the VMware vCenter server.
  246.  
  247. CONFIG_VCENTER_HOST=
  248.  
  249.  
  250.  
  251. # User name for VMware vCenter server authentication.
  252.  
  253. CONFIG_VCENTER_USER=
  254.  
  255.  
  256.  
  257. # Password for VMware vCenter server authentication.
  258.  
  259. CONFIG_VCENTER_PASSWORD=
  260.  
  261.  
  262.  
  263. # Comma separated list of names of the VMware vCenter clusters. Note:
  264.  
  265. # if multiple clusters are specified each one is mapped to one
  266.  
  267. # compute,otherwise all computes are mapped to same cluster.
  268.  
  269. CONFIG_VCENTER_CLUSTER_NAMES=
  270.  
  271.  
  272.  
  273. # (Unsupported!) Server on which to install OpenStack services
  274.  
  275. # specific to storage servers such as Image or Block Storage services.
  276.  
  277. CONFIG_STORAGE_HOST=10.0.2.15
  278.  
  279.  
  280.  
  281. # (Unsupported!) Server on which to install OpenStack services
  282.  
  283. # specific to OpenStack Data Processing (sahara).
  284.  
  285. CONFIG_SAHARA_HOST=10.0.2.15
  286.  
  287.  
  288.  
  289. # Specify 'y' to enable the EPEL repository (Extra Packages for
  290.  
  291. # Enterprise Linux). ['y','n']
  292.  
  293. CONFIG_USE_EPEL=n
  294.  
  295.  
  296.  
  297. # Comma-separated list of URLs for any additional yum repositories,
  298.  
  299. # to use for installation.
  300.  
  301. CONFIG_REPO=
  302.  
  303.  
  304.  
  305. # Specify 'y' to enable the RDO testing repository. ['y','n']
  306.  
  307. CONFIG_ENABLE_RDO_TESTING=n
  308.  
  309.  
  310.  
  311. # To subscribe each server with Red Hat Subscription Manager,include
  312.  
  313. # this with CONFIG_RH_PW.
  314.  
  315. CONFIG_RH_USER=
  316.  
  317.  
  318.  
  319. # To subscribe each server to receive updates from a Satellite
  320.  
  321. # server,provide the URL of the Satellite server. You must also
  322.  
  323. # provide a user name (CONFIG_SATELLITE_USERNAME) and password
  324.  
  325. # (CONFIG_SATELLITE_PASSWORD) or an access key (CONFIG_SATELLITE_AKEY)
  326.  
  327. # for authentication.
  328.  
  329. CONFIG_SATELLITE_URL=
  330.  
  331.  
  332.  
  333. # Specify a Satellite 6 Server to register to. If not specified,
  334.  
  335. # Packstack will register the system to the Red Hat server. When this
  336.  
  337. # option is specified,you also need to set the Satellite 6
  338.  
  339. # organization (CONFIG_RH_SAT6_ORG) and an activation key
  340.  
  341. # (CONFIG_RH_SAT6_KEY).
  342.  
  343. CONFIG_RH_SAT6_SERVER=
  344.  
  345.  
  346.  
  347. # To subscribe each server with Red Hat Subscription Manager,include
  348.  
  349. # this with CONFIG_RH_USER.
  350.  
  351. CONFIG_RH_PW=
  352.  
  353.  
  354.  
  355. # Specify 'y' to enable RHEL optional repositories. ['y','n']
  356.  
  357. CONFIG_RH_OPTIONAL=y
  358.  
  359.  
  360.  
  361. # HTTP proxy to use with Red Hat Subscription Manager.
  362.  
  363. CONFIG_RH_PROXY=
  364.  
  365.  
  366.  
  367. # Specify a Satellite 6 Server organization to use when registering
  368.  
  369. # the system.
  370.  
  371. CONFIG_RH_SAT6_ORG=
  372.  
  373.  
  374.  
  375. # Specify a Satellite 6 Server activation key to use when registering
  376.  
  377. # the system.
  378.  
  379. CONFIG_RH_SAT6_KEY=
  380.  
  381.  
  382.  
  383. # Port to use for Red Hat Subscription Manager's HTTP proxy.
  384.  
  385. CONFIG_RH_PROXY_PORT=
  386.  
  387.  
  388.  
  389. # User name to use for Red Hat Subscription Manager's HTTP proxy.
  390.  
  391. CONFIG_RH_PROXY_USER=
  392.  
  393.  
  394.  
  395. # Password to use for Red Hat Subscription Manager's HTTP proxy.
  396.  
  397. CONFIG_RH_PROXY_PW=
  398.  
  399.  
  400.  
  401. # User name to authenticate with the RHN Satellite server; if you
  402.  
  403. # intend to use an access key for Satellite authentication,leave this
  404.  
  405. # blank.
  406.  
  407. CONFIG_SATELLITE_USER=
  408.  
  409.  
  410.  
  411. # Password to authenticate with the RHN Satellite server; if you
  412.  
  413. # intend to use an access key for Satellite authentication,leave this
  414.  
  415. # blank.
  416.  
  417. CONFIG_SATELLITE_PW=
  418.  
  419.  
  420.  
  421. # Access key for the Satellite server; if you intend to use a user
  422.  
  423. # name and password for Satellite authentication,leave this blank.
  424.  
  425. CONFIG_SATELLITE_AKEY=
  426.  
  427.  
  428.  
  429. # Certificate path or URL of the certificate authority to verify that
  430.  
  431. # the connection with the Satellite server is secure. If you are not
  432.  
  433. # using Satellite in your deployment,leave this blank.
  434.  
  435. CONFIG_SATELLITE_CACERT=
  436.  
  437.  
  438.  
  439. # Profile name that should be used as an identifier for the system in
  440.  
  441. # RHN Satellite (if required).
  442.  
  443. CONFIG_SATELLITE_PROFILE=
  444.  
  445.  
  446.  
  447. # Comma-separated list of flags passed to the rhnreg_ks command.
  448.  
  449. # Valid flags are: novirtinfo,norhnsd,nopackages ['novirtinfo',
  450.  
  451. # 'norhnsd','nopackages']
  452.  
  453. CONFIG_SATELLITE_FLAGS=
  454.  
  455.  
  456.  
  457. # HTTP proxy to use when connecting to the RHN Satellite server (if
  458.  
  459. # required).
  460.  
  461. CONFIG_SATELLITE_PROXY=
  462.  
  463.  
  464.  
  465. # User name to authenticate with the Satellite-server HTTP proxy.
  466.  
  467. CONFIG_SATELLITE_PROXY_USER=
  468.  
  469.  
  470.  
  471. # User password to authenticate with the Satellite-server HTTP proxy.
  472.  
  473. CONFIG_SATELLITE_PROXY_PW=
  474.  
  475.  
  476.  
  477. # Specify filepath for CA cert file. If CONFIG_SSL_CACERT_SELFSIGN is
  478.  
  479. # set to 'n' it has to be preexisting file.
  480.  
  481. CONFIG_SSL_CACERT_FILE=/etc/pki/tls/certs/selfcert.crt
  482.  
  483.  
  484.  
  485. # Specify filepath for CA cert key file. If
  486.  
  487. # CONFIG_SSL_CACERT_SELFSIGN is set to 'n' it has to be preexisting
  488.  
  489. # file.
  490.  
  491. CONFIG_SSL_CACERT_KEY_FILE=/etc/pki/tls/private/selfkey.key
  492.  
  493.  
  494.  
  495. # Enter the path to use to store generated SSL certificates in.
  496.  
  497. CONFIG_SSL_CERT_DIR=~/packstackca/
  498.  
  499.  
  500.  
  501. # Specify 'y' if you want Packstack to pregenerate the CA
  502.  
  503. # Certificate.
  504.  
  505. CONFIG_SSL_CACERT_SELFSIGN=y
  506.  
  507.  
  508.  
  509. # Enter the selfsigned CAcert subject country.
  510.  
  511. CONFIG_SELFSIGN_CACERT_SUBJECT_C=--
  512.  
  513.  
  514.  
  515. # Enter the selfsigned CAcert subject state.
  516.  
  517. CONFIG_SELFSIGN_CACERT_SUBJECT_ST=State
  518.  
  519.  
  520.  
  521. # Enter the selfsigned CAcert subject location.
  522.  
  523. CONFIG_SELFSIGN_CACERT_SUBJECT_L=City
  524.  
  525.  
  526.  
  527. # Enter the selfsigned CAcert subject organization.
  528.  
  529. CONFIG_SELFSIGN_CACERT_SUBJECT_O=openstack
  530.  
  531.  
  532.  
  533. # Enter the selfsigned CAcert subject organizational unit.
  534.  
  535. CONFIG_SELFSIGN_CACERT_SUBJECT_OU=packstack
  536.  
  537.  
  538.  
  539. # Enter the selfsigned CAcert subject common name.
  540.  
  541. CONFIG_SELFSIGN_CACERT_SUBJECT_CN=packstack
  542.  
  543.  
  544.  
  545. CONFIG_SELFSIGN_CACERT_SUBJECT_MAIL=admin@packstack
  546.  
  547.  
  548.  
  549. # Service to be used as the AMQP broker. Allowed values are: rabbitmq
  550.  
  551. # ['rabbitmq']
  552.  
  553. CONFIG_AMQP_BACKEND=rabbitmq
  554.  
  555.  
  556.  
  557. # IP address of the server on which to install the AMQP service.
  558.  
  559. CONFIG_AMQP_HOST=10.0.2.15
  560.  
  561.  
  562.  
  563. # Specify 'y' to enable SSL for the AMQP service. ['y','n']
  564.  
  565. CONFIG_AMQP_ENABLE_SSL=n
  566.  
  567.  
  568.  
  569. # Specify 'y' to enable authentication for the AMQP service. ['y',
  570.  
  571. # 'n']
  572.  
  573. CONFIG_AMQP_ENABLE_AUTH=n
  574.  
  575.  
  576.  
  577. # Password for the NSS certificate database of the AMQP service.
  578.  
  579. CONFIG_AMQP_NSS_CERTDB_PW=PW_PLACEHOLDER
  580.  
  581.  
  582.  
  583. # User for AMQP authentication.
  584.  
  585. CONFIG_AMQP_AUTH_USER=amqp_user
  586.  
  587.  
  588.  
  589. # Password for AMQP authentication.
  590.  
  591. CONFIG_AMQP_AUTH_PASSWORD=PW_PLACEHOLDER
  592.  
  593.  
  594.  
  595. # IP address of the server on which to install MariaDB. If a MariaDB
  596.  
  597. # installation was not specified in CONFIG_MARIADB_INSTALL,specify
  598.  
  599. # the IP address of an existing database server (a MariaDB cluster can
  600.  
  601. # also be specified).
  602.  
  603. CONFIG_MARIADB_HOST=10.0.2.15
  604.  
  605.  
  606.  
  607. # User name for the MariaDB administrative user.
  608.  
  609. CONFIG_MARIADB_USER=root
  610.  
  611.  
  612.  
  613. # Password for the MariaDB administrative user.
  614.  
  615. CONFIG_MARIADB_PW=67910d76942f4616
  616.  
  617.  
  618.  
  619. # Password to use for the Identity service (keystone) to access the
  620.  
  621. # database.
  622.  
  623. CONFIG_KEYSTONE_DB_PW=0f7395897231422d
  624.  
  625.  
  626.  
  627. # Enter y if cron job for removing soft deleted DB rows should be
  628.  
  629. # created.
  630.  
  631. CONFIG_KEYSTONE_DB_PURGE_ENABLE=True
  632.  
  633.  
  634.  
  635. # Default region name to use when creating tenants in the Identity
  636.  
  637. # service.
  638.  
  639. CONFIG_KEYSTONE_REGION=RegionOne
  640.  
  641.  
  642.  
  643. # Token to use for the Identity service API.
  644.  
  645. CONFIG_KEYSTONE_ADMIN_TOKEN=abb21145a01448e288e25bfac854d7aa
  646.  
  647.  
  648.  
  649. # Email address for the Identity service 'admin' user. Defaults to
  650.  
  651. CONFIG_KEYSTONE_ADMIN_EMAIL=root@localhost
  652.  
  653.  
  654.  
  655. # User name for the Identity service 'admin' user. Defaults to
  656.  
  657. # 'admin'.
  658.  
  659. CONFIG_KEYSTONE_ADMIN_USERNAME=admin
  660.  
  661.  
  662.  
  663. # Password to use for the Identity service 'admin' user.
  664.  
  665. CONFIG_KEYSTONE_ADMIN_PW=admin
  666.  
  667.  
  668.  
  669. # Password to use for the Identity service 'demo' user.
  670.  
  671. CONFIG_KEYSTONE_DEMO_PW=demo
  672.  
  673.  
  674.  
  675. # Identity service API version string. ['v2.0','v3']
  676.  
  677. CONFIG_KEYSTONE_API_VERSION=v2.0
  678.  
  679.  
  680.  
  681. # Identity service token format (UUID or PKI). The recommended format
  682.  
  683. # for new deployments is UUID. ['UUID','PKI']
  684.  
  685. CONFIG_KEYSTONE_TOKEN_FORMAT=UUID
  686.  
  687.  
  688.  
  689. # Name of service to use to run the Identity service (keystone or
  690.  
  691. # httpd). ['keystone','httpd']
  692.  
  693. CONFIG_KEYSTONE_SERVICE_NAME=httpd
  694.  
  695.  
  696.  
  697. # Type of Identity service backend (sql or ldap). ['sql','ldap']
  698.  
  699. CONFIG_KEYSTONE_IDENTITY_BACKEND=sql
  700.  
  701.  
  702.  
  703. # URL for the Identity service LDAP backend.
  704.  
  705. CONFIG_KEYSTONE_LDAP_URL=ldap://10.0.2.15
  706.  
  707.  
  708.  
  709. # User DN for the Identity service LDAP backend. Used to bind to the
  710.  
  711. # LDAP server if the LDAP server does not allow anonymous
  712.  
  713. # authentication.
  714.  
  715. CONFIG_KEYSTONE_LDAP_USER_DN=
  716.  
  717.  
  718.  
  719. # User DN password for the Identity service LDAP backend.
  720.  
  721. CONFIG_KEYSTONE_LDAP_USER_PASSWORD=
  722.  
  723.  
  724.  
  725. # Base suffix for the Identity service LDAP backend.
  726.  
  727. CONFIG_KEYSTONE_LDAP_SUFFIX=
  728.  
  729.  
  730.  
  731. # Query scope for the Identity service LDAP backend. Use 'one' for
  732.  
  733. # onelevel/singleLevel or 'sub' for subtree/wholeSubtree ('base' is
  734.  
  735. # not actually used by the Identity service and is therefore
  736.  
  737. # deprecated). ['base','one','sub']
  738.  
  739. CONFIG_KEYSTONE_LDAP_QUERY_SCOPE=one
  740.  
  741.  
  742.  
  743. # Query page size for the Identity service LDAP backend.
  744.  
  745. CONFIG_KEYSTONE_LDAP_PAGE_SIZE=-1
  746.  
  747.  
  748.  
  749. # User subtree for the Identity service LDAP backend.
  750.  
  751. CONFIG_KEYSTONE_LDAP_USER_SUBTREE=
  752.  
  753.  
  754.  
  755. # User query filter for the Identity service LDAP backend.
  756.  
  757. CONFIG_KEYSTONE_LDAP_USER_FILTER=
  758.  
  759.  
  760.  
  761. # User object class for the Identity service LDAP backend.
  762.  
  763. CONFIG_KEYSTONE_LDAP_USER_OBJECTCLASS=
  764.  
  765.  
  766.  
  767. # User ID attribute for the Identity service LDAP backend.
  768.  
  769. CONFIG_KEYSTONE_LDAP_USER_ID_ATTRIBUTE=
  770.  
  771.  
  772.  
  773. # User name attribute for the Identity service LDAP backend.
  774.  
  775. CONFIG_KEYSTONE_LDAP_USER_NAME_ATTRIBUTE=
  776.  
  777.  
  778.  
  779. # User email address attribute for the Identity service LDAP backend.
  780.  
  781. CONFIG_KEYSTONE_LDAP_USER_MAIL_ATTRIBUTE=
  782.  
  783.  
  784.  
  785. # User-enabled attribute for the Identity service LDAP backend.
  786.  
  787. CONFIG_KEYSTONE_LDAP_USER_ENABLED_ATTRIBUTE=
  788.  
  789.  
  790.  
  791. # Bit mask integer applied to user-enabled attribute for the Identity
  792.  
  793. # service LDAP backend. Indicate the bit that the enabled value is
  794.  
  795. # stored in if the LDAP server represents "enabled" as a bit on an
  796.  
  797. # integer rather than a boolean. A value of "0" indicates the mask is
  798.  
  799. # not used (default). If this is not set to "0",the typical value is
  800.  
  801. # "2",typically used when
  802.  
  803. # "CONFIG_KEYSTONE_LDAP_USER_ENABLED_ATTRIBUTE = userAccountControl".
  804.  
  805. CONFIG_KEYSTONE_LDAP_USER_ENABLED_MASK=-1
  806.  
  807.  
  808.  
  809. # Value of enabled attribute which indicates user is enabled for the
  810.  
  811. # Identity service LDAP backend. This should match an appropriate
  812.  
  813. # integer value if the LDAP server uses non-boolean (bitmask) values
  814.  
  815. # to indicate whether a user is enabled or disabled. If this is not
  816.  
  817. # set as 'y',the typical value is "512". This is typically used when
  818.  
  819. # "CONFIG_KEYSTONE_LDAP_USER_ENABLED_ATTRIBUTE = userAccountControl".
  820.  
  821. CONFIG_KEYSTONE_LDAP_USER_ENABLED_DEFAULT=TRUE
  822.  
  823.  
  824.  
  825. # Specify 'y' if users are disabled (not enabled) in the Identity
  826.  
  827. # service LDAP backend (inverts boolean-enalbed values). Some LDAP
  828.  
  829. # servers use a boolean lock attribute where "y" means an account is
  830.  
  831. # disabled. Setting this to 'y' allows these lock attributes to be
  832.  
  833. # used. This setting will have no effect if
  834.  
  835. # "CONFIG_KEYSTONE_LDAP_USER_ENABLED_MASK" is in use. ['n','y']
  836.  
  837. CONFIG_KEYSTONE_LDAP_USER_ENABLED_INVERT=n
  838.  
  839.  
  840.  
  841. # Comma-separated list of attributes stripped from LDAP user entry
  842.  
  843. # upon update.
  844.  
  845. CONFIG_KEYSTONE_LDAP_USER_ATTRIBUTE_IGNORE=
  846.  
  847.  
  848.  
  849. # Identity service LDAP attribute mapped to default_project_id for
  850.  
  851. # users.
  852.  
  853. CONFIG_KEYSTONE_LDAP_USER_DEFAULT_PROJECT_ID_ATTRIBUTE=
  854.  
  855.  
  856.  
  857. # Specify 'y' if you want to be able to create Identity service users
  858.  
  859. # through the Identity service interface; specify 'n' if you will
  860.  
  861. # create directly in the LDAP backend. ['n','y']
  862.  
  863. CONFIG_KEYSTONE_LDAP_USER_ALLOW_CREATE=n
  864.  
  865.  
  866.  
  867. # Specify 'y' if you want to be able to update Identity service users
  868.  
  869. # through the Identity service interface; specify 'n' if you will
  870.  
  871. # update directly in the LDAP backend. ['n','y']
  872.  
  873. CONFIG_KEYSTONE_LDAP_USER_ALLOW_UPDATE=n
  874.  
  875.  
  876.  
  877. # Specify 'y' if you want to be able to delete Identity service users
  878.  
  879. # through the Identity service interface; specify 'n' if you will
  880.  
  881. # delete directly in the LDAP backend. ['n','y']
  882.  
  883. CONFIG_KEYSTONE_LDAP_USER_ALLOW_DELETE=n
  884.  
  885.  
  886.  
  887. # Identity service LDAP attribute mapped to password.
  888.  
  889. CONFIG_KEYSTONE_LDAP_USER_PASS_ATTRIBUTE=
  890.  
  891.  
  892.  
  893. # DN of the group entry to hold enabled LDAP users when using enabled
  894.  
  895. # emulation.
  896.  
  897. CONFIG_KEYSTONE_LDAP_USER_ENABLED_EMULATION_DN=
  898.  
  899.  
  900.  
  901. # List of additional LDAP attributes for mapping additional attribute
  902.  
  903. # mappings for users. The attribute-mapping format is
  904.  
  905. # <ldap_attr>:<user_attr>,where ldap_attr is the attribute in the
  906.  
  907. # LDAP entry and user_attr is the Identity API attribute.
  908.  
  909. CONFIG_KEYSTONE_LDAP_USER_ADDITIONAL_ATTRIBUTE_MAPPING=
  910.  
  911.  
  912.  
  913. # Group subtree for the Identity service LDAP backend.
  914.  
  915. CONFIG_KEYSTONE_LDAP_GROUP_SUBTREE=
  916.  
  917.  
  918.  
  919. # Group query filter for the Identity service LDAP backend.
  920.  
  921. CONFIG_KEYSTONE_LDAP_GROUP_FILTER=
  922.  
  923.  
  924.  
  925. # Group object class for the Identity service LDAP backend.
  926.  
  927. CONFIG_KEYSTONE_LDAP_GROUP_OBJECTCLASS=
  928.  
  929.  
  930.  
  931. # Group ID attribute for the Identity service LDAP backend.
  932.  
  933. CONFIG_KEYSTONE_LDAP_GROUP_ID_ATTRIBUTE=
  934.  
  935.  
  936.  
  937. # Group name attribute for the Identity service LDAP backend.
  938.  
  939. CONFIG_KEYSTONE_LDAP_GROUP_NAME_ATTRIBUTE=
  940.  
  941.  
  942.  
  943. # Group member attribute for the Identity service LDAP backend.
  944.  
  945. CONFIG_KEYSTONE_LDAP_GROUP_MEMBER_ATTRIBUTE=
  946.  
  947.  
  948.  
  949. # Group description attribute for the Identity service LDAP backend.
  950.  
  951. CONFIG_KEYSTONE_LDAP_GROUP_DESC_ATTRIBUTE=
  952.  
  953.  
  954.  
  955. # Comma-separated list of attributes stripped from LDAP group entry
  956.  
  957. # upon update.
  958.  
  959. CONFIG_KEYSTONE_LDAP_GROUP_ATTRIBUTE_IGNORE=
  960.  
  961.  
  962.  
  963. # Specify 'y' if you want to be able to create Identity service
  964.  
  965. # groups through the Identity service interface; specify 'n' if you
  966.  
  967. # will create directly in the LDAP backend. ['n','y']
  968.  
  969. CONFIG_KEYSTONE_LDAP_GROUP_ALLOW_CREATE=n
  970.  
  971.  
  972.  
  973. # Specify 'y' if you want to be able to update Identity service
  974.  
  975. # groups through the Identity service interface; specify 'n' if you
  976.  
  977. # will update directly in the LDAP backend. ['n','y']
  978.  
  979. CONFIG_KEYSTONE_LDAP_GROUP_ALLOW_UPDATE=n
  980.  
  981.  
  982.  
  983. # Specify 'y' if you want to be able to delete Identity service
  984.  
  985. # groups through the Identity service interface; specify 'n' if you
  986.  
  987. # will delete directly in the LDAP backend. ['n','y']
  988.  
  989. CONFIG_KEYSTONE_LDAP_GROUP_ALLOW_DELETE=n
  990.  
  991.  
  992.  
  993. # List of additional LDAP attributes used for mapping additional
  994.  
  995. # attribute mappings for groups. The attribute=mapping format is
  996.  
  997. # <ldap_attr>:<group_attr>,where ldap_attr is the attribute in the
  998.  
  999. # LDAP entry and group_attr is the Identity API attribute.
  1000.  
  1001. CONFIG_KEYSTONE_LDAP_GROUP_ADDITIONAL_ATTRIBUTE_MAPPING=
  1002.  
  1003.  
  1004.  
  1005. # Specify 'y' if the Identity service LDAP backend should use TLS.
  1006.  
  1007. # ['n','y']
  1008.  
  1009. CONFIG_KEYSTONE_LDAP_USE_TLS=n
  1010.  
  1011.  
  1012.  
  1013. # CA certificate directory for Identity service LDAP backend (if TLS
  1014.  
  1015. # is used).
  1016.  
  1017. CONFIG_KEYSTONE_LDAP_TLS_CACERTDIR=
  1018.  
  1019.  
  1020.  
  1021. # CA certificate file for Identity service LDAP backend (if TLS is
  1022.  
  1023. # used).
  1024.  
  1025. CONFIG_KEYSTONE_LDAP_TLS_CACERTFILE=
  1026.  
  1027.  
  1028.  
  1029. # Certificate-checking strictness level for Identity service LDAP
  1030.  
  1031. # backend; valid options are: never,allow,demand. ['never','allow',
  1032.  
  1033. # 'demand']
  1034.  
  1035. CONFIG_KEYSTONE_LDAP_TLS_REQ_CERT=demand
  1036.  
  1037.  
  1038.  
  1039. # Password to use for the Image service (glance) to access the
  1040.  
  1041. # database.
  1042.  
  1043. CONFIG_GLANCE_DB_PW=ab6b7d5882bf4bcd
  1044.  
  1045.  
  1046.  
  1047. # Password to use for the Image service to authenticate with the
  1048.  
  1049. # Identity service.
  1050.  
  1051. CONFIG_GLANCE_KS_PW=cca0c6076d8a4849
  1052.  
  1053.  
  1054.  
  1055. # Storage backend for the Image service (controls how the Image
  1056.  
  1057. # service stores disk images). Valid options are: file or swift
  1058.  
  1059. # (Object Storage). The Object Storage service must be enabled to use
  1060.  
  1061. # it as a working backend; otherwise,Packstack falls back to 'file'.
  1062.  
  1063. # ['file','swift']
  1064.  
  1065. CONFIG_GLANCE_BACKEND=file
  1066.  
  1067.  
  1068.  
  1069. # Password to use for the Block Storage service (cinder) to access
  1070.  
  1071. # the database.
  1072.  
  1073. CONFIG_CINDER_DB_PW=9a41e1c3ec5146dd
  1074.  
  1075.  
  1076.  
  1077. # Enter y if cron job for removing soft deleted DB rows should be
  1078.  
  1079. # created.
  1080.  
  1081. CONFIG_CINDER_DB_PURGE_ENABLE=True
  1082.  
  1083.  
  1084.  
  1085. # Password to use for the Block Storage service to authenticate with
  1086.  
  1087. # the Identity service.
  1088.  
  1089. CONFIG_CINDER_KS_PW=c8a9cda31b6d47eb
  1090.  
  1091.  
  1092.  
  1093. # Storage backend to use for the Block Storage service; valid options
  1094.  
  1095. # are: lvm,gluster,nfs,vmdk,netapp. ['lvm','gluster','nfs',
  1096.  
  1097. # 'vmdk','netapp']
  1098.  
  1099. CONFIG_CINDER_BACKEND=lvm
  1100.  
  1101.  
  1102.  
  1103. # Specify 'y' to create the Block Storage volumes group. That is,
  1104.  
  1105. # Packstack creates a raw disk image in /var/lib/cinder,and mounts it
  1106.  
  1107. # using a loopback device. This should only be used for testing on a
  1108.  
  1109. # proof-of-concept installation of the Block Storage service (a file-
  1110.  
  1111. # backed volume group is not suitable for production usage). ['y',
  1112.  
  1113. # 'n']
  1114.  
  1115. CONFIG_CINDER_VOLUMES_CREATE=y
  1116.  
  1117.  
  1118.  
  1119. # Size of Block Storage volumes group. Actual volume size will be
  1120.  
  1121. # extended with 3% more space for VG Metadata. Remember that the size
  1122.  
  1123. # of the volume group will restrict the amount of disk space that you
  1124.  
  1125. # can expose to Compute instances,and that the specified amount must
  1126.  
  1127. # be available on the device used for /var/lib/cinder.
  1128.  
  1129. CONFIG_CINDER_VOLUMES_SIZE=20G
  1130.  
  1131.  
  1132.  
  1133. # A single or comma-separated list of Red Hat Storage (gluster)
  1134.  
  1135. # volume shares to mount. Example: 'ip-address:/vol-name','domain
  1136.  
  1137. # :/vol-name'
  1138.  
  1139. CONFIG_CINDER_GLUSTER_MOUNTS=
  1140.  
  1141.  
  1142.  
  1143. # A single or comma-separated list of NFS exports to mount. Example:
  1144.  
  1145. # 'ip-address:/export-name'
  1146.  
  1147. CONFIG_CINDER_NFS_MOUNTS=
  1148.  
  1149.  
  1150.  
  1151. # Administrative user account name used to access the NetApp storage
  1152.  
  1153. # system or proxy server.
  1154.  
  1155. CONFIG_CINDER_NETAPP_LOGIN=
  1156.  
  1157.  
  1158.  
  1159. # Password for the NetApp administrative user account specified in
  1160.  
  1161. # the CONFIG_CINDER_NETAPP_LOGIN parameter.
  1162.  
  1163. CONFIG_CINDER_NETAPP_PASSWORD=
  1164.  
  1165.  
  1166.  
  1167. # Hostname (or IP address) for the NetApp storage system or proxy
  1168.  
  1169. # server.
  1170.  
  1171. CONFIG_CINDER_NETAPP_HOSTNAME=
  1172.  
  1173.  
  1174.  
  1175. # The TCP port to use for communication with the storage system or
  1176.  
  1177. # proxy. If not specified,Data ONTAP drivers will use 80 for HTTP and
  1178.  
  1179. # 443 for HTTPS; E-Series will use 8080 for HTTP and 8443 for HTTPS.
  1180.  
  1181. # Defaults to 80.
  1182.  
  1183. CONFIG_CINDER_NETAPP_SERVER_PORT=80
  1184.  
  1185.  
  1186.  
  1187. # Storage family type used on the NetApp storage system; valid
  1188.  
  1189. # options are ontap_7mode for using Data ONTAP operating in 7-Mode,
  1190.  
  1191. # ontap_cluster for using clustered Data ONTAP,or E-Series for NetApp
  1192.  
  1193. # E-Series. Defaults to ontap_cluster. ['ontap_7mode',
  1194.  
  1195. # 'ontap_cluster','eseries']
  1196.  
  1197. CONFIG_CINDER_NETAPP_STORAGE_FAMILY=ontap_cluster
  1198.  
  1199.  
  1200.  
  1201. # The transport protocol used when communicating with the NetApp
  1202.  
  1203. # storage system or proxy server. Valid values are http or https.
  1204.  
  1205. # Defaults to 'http'. ['http','https']
  1206.  
  1207. CONFIG_CINDER_NETAPP_TRANSPORT_TYPE=http
  1208.  
  1209.  
  1210.  
  1211. # Storage protocol to be used on the data path with the NetApp
  1212.  
  1213. # storage system; valid options are iscsi,fc,nfs. Defaults to nfs.
  1214.  
  1215. # ['iscsi','fc','nfs']
  1216.  
  1217. CONFIG_CINDER_NETAPP_STORAGE_PROTOCOL=nfs
  1218.  
  1219.  
  1220.  
  1221. # Quantity to be multiplied by the requested volume size to ensure
  1222.  
  1223. # enough space is available on the virtual storage server (Vserver) to
  1224.  
  1225. # fulfill the volume creation request. Defaults to 1.0.
  1226.  
  1227. CONFIG_CINDER_NETAPP_SIZE_MULTIPLIER=1.0
  1228.  
  1229.  
  1230.  
  1231. # Time period (in minutes) that is allowed to elapse after the image
  1232.  
  1233. # is last accessed,before it is deleted from the NFS image cache.
  1234.  
  1235. # When a cache-cleaning cycle begins,images in the cache that have
  1236.  
  1237. # not been accessed in the last M minutes,where M is the value of
  1238.  
  1239. # this parameter,are deleted from the cache to create free space on
  1240.  
  1241. # the NFS share. Defaults to 720.
  1242.  
  1243. CONFIG_CINDER_NETAPP_EXPIRY_THRES_MINUTES=720
  1244.  
  1245.  
  1246.  
  1247. # If the percentage of available space for an NFS share has dropped
  1248.  
  1249. # below the value specified by this parameter,the NFS image cache is
  1250.  
  1251. # cleaned. Defaults to 20.
  1252.  
  1253. CONFIG_CINDER_NETAPP_THRES_AVL_SIZE_PERC_START=20
  1254.  
  1255.  
  1256.  
  1257. # When the percentage of available space on an NFS share has reached
  1258.  
  1259. # the percentage specified by this parameter,the driver stops
  1260.  
  1261. # clearing files from the NFS image cache that have not been accessed
  1262.  
  1263. # in the last M minutes,where M is the value of the
  1264.  
  1265. # CONFIG_CINDER_NETAPP_EXPIRY_THRES_MINUTES parameter. Defaults to 60.
  1266.  
  1267. CONFIG_CINDER_NETAPP_THRES_AVL_SIZE_PERC_STOP=60
  1268.  
  1269.  
  1270.  
  1271. # Single or comma-separated list of NetApp NFS shares for Block
  1272.  
  1273. # Storage to use. Format: ip-address:/export-name. Defaults to ''.
  1274.  
  1275. CONFIG_CINDER_NETAPP_NFS_SHARES=
  1276.  
  1277.  
  1278.  
  1279. # File with the list of available NFS shares. Defaults to
  1280.  
  1281. # '/etc/cinder/shares.conf'.
  1282.  
  1283. CONFIG_CINDER_NETAPP_NFS_SHARES_CONFIG=/etc/cinder/shares.conf
  1284.  
  1285.  
  1286.  
  1287. # This parameter is only utilized when the storage protocol is
  1288.  
  1289. # configured to use iSCSI or FC. This parameter is used to restrict
  1290.  
  1291. # provisioning to the specified controller volumes. Specify the value
  1292.  
  1293. # of this parameter to be a comma separated list of NetApp controller
  1294.  
  1295. # volume names to be used for provisioning. Defaults to ''.
  1296.  
  1297. CONFIG_CINDER_NETAPP_VOLUME_LIST=
  1298.  
  1299.  
  1300.  
  1301. # The vFiler unit on which provisioning of block storage volumes will
  1302.  
  1303. # be done. This parameter is only used by the driver when connecting
  1304.  
  1305. # to an instance with a storage family of Data ONTAP operating in
  1306.  
  1307. # 7-Mode Only use this parameter when utilizing the MultiStore feature
  1308.  
  1309. # on the NetApp storage system. Defaults to ''.
  1310.  
  1311. CONFIG_CINDER_NETAPP_VFILER=
  1312.  
  1313.  
  1314.  
  1315. # The name of the config.conf stanza for a Data ONTAP (7-mode) HA
  1316.  
  1317. # partner. This option is only used by the driver when connecting to
  1318.  
  1319. # an instance with a storage family of Data ONTAP operating in 7-Mode,
  1320.  
  1321. # and it is required if the storage protocol selected is FC. Defaults
  1322.  
  1323. # to ''.
  1324.  
  1325. CONFIG_CINDER_NETAPP_PARTNER_BACKEND_NAME=
  1326.  
  1327.  
  1328.  
  1329. # This option specifies the virtual storage server (Vserver) name on
  1330.  
  1331. # the storage cluster on which provisioning of block storage volumes
  1332.  
  1333. # should occur. Defaults to ''.
  1334.  
  1335. CONFIG_CINDER_NETAPP_VSERVER=
  1336.  
  1337.  
  1338.  
  1339. # Restricts provisioning to the specified controllers. Value must be
  1340.  
  1341. # a comma-separated list of controller hostnames or IP addresses to be
  1342.  
  1343. # used for provisioning. This option is only utilized when the storage
  1344.  
  1345. # family is configured to use E-Series. Defaults to ''.
  1346.  
  1347. CONFIG_CINDER_NETAPP_CONTROLLER_IPS=
  1348.  
  1349.  
  1350.  
  1351. # Password for the NetApp E-Series storage array. Defaults to ''.
  1352.  
  1353. CONFIG_CINDER_NETAPP_SA_PASSWORD=
  1354.  
  1355.  
  1356.  
  1357. # This option is used to define how the controllers in the E-Series
  1358.  
  1359. # storage array will work with the particular operating system on the
  1360.  
  1361. # hosts that are connected to it. Defaults to 'linux_dm_mp'
  1362.  
  1363. CONFIG_CINDER_NETAPP_ESERIES_HOST_TYPE=linux_dm_mp
  1364.  
  1365.  
  1366.  
  1367. # Path to the NetApp E-Series proxy application on a proxy server.
  1368.  
  1369. # The value is combined with the value of the
  1370.  
  1371. # CONFIG_CINDER_NETAPP_TRANSPORT_TYPE,CONFIG_CINDER_NETAPP_HOSTNAME,
  1372.  
  1373. # and CONFIG_CINDER_NETAPP_HOSTNAME options to create the URL used by
  1374.  
  1375. # the driver to connect to the proxy application. Defaults to
  1376.  
  1377. # '/devmgr/v2'.
  1378.  
  1379. CONFIG_CINDER_NETAPP_WEBSERVICE_PATH=/devmgr/v2
  1380.  
  1381.  
  1382.  
  1383. # Restricts provisioning to the specified storage pools. Only dynamic
  1384.  
  1385. # disk pools are currently supported. The value must be a comma-
  1386.  
  1387. # separated list of disk pool names to be used for provisioning.
  1388.  
  1389. # Defaults to ''.
  1390.  
  1391. CONFIG_CINDER_NETAPP_STORAGE_POOLS=
  1392.  
  1393.  
  1394.  
  1395. # Password to use for OpenStack Bare Metal Provisioning (ironic) to
  1396.  
  1397. # access the database.
  1398.  
  1399. CONFIG_IRONIC_DB_PW=PW_PLACEHOLDER
  1400.  
  1401.  
  1402.  
  1403. # Password to use for OpenStack Bare Metal Provisioning to
  1404.  
  1405. # authenticate with the Identity service.
  1406.  
  1407. CONFIG_IRONIC_KS_PW=PW_PLACEHOLDER
  1408.  
  1409.  
  1410.  
  1411. # Enter y if cron job for removing soft deleted DB rows should be
  1412.  
  1413. # created.
  1414.  
  1415. CONFIG_NOVA_DB_PURGE_ENABLE=True
  1416.  
  1417.  
  1418.  
  1419. # Password to use for the Compute service (nova) to access the
  1420.  
  1421. # database.
  1422.  
  1423. CONFIG_NOVA_DB_PW=2b413313b40c4cef
  1424.  
  1425.  
  1426.  
  1427. # Password to use for the Compute service to authenticate with the
  1428.  
  1429. # Identity service.
  1430.  
  1431. CONFIG_NOVA_KS_PW=de17a9d0e3984bae
  1432.  
  1433.  
  1434.  
  1435. # Overcommitment ratio for virtual to physical cpus. Specify 1.0 to
  1436.  
  1437. # disable cpu overcommitment.
  1438.  
  1439. CONFIG_NOVA_SCHED_cpu_ALLOC_RATIO=16.0
  1440.  
  1441.  
  1442.  
  1443. # Overcommitment ratio for virtual to physical RAM. Specify 1.0 to
  1444.  
  1445. # disable RAM overcommitment.
  1446.  
  1447. CONFIG_NOVA_SCHED_RAM_ALLOC_RATIO=1.5
  1448.  
  1449.  
  1450.  
  1451. # Protocol used for instance migration. Valid options are: tcp and
  1452.  
  1453. # ssh. Note that by default,the Compute user is created with the
  1454.  
  1455. # /sbin/nologin shell so that the SSH protocol will not work. To make
  1456.  
  1457. # the SSH protocol work,you must configure the Compute user on
  1458.  
  1459. # compute hosts manually. ['tcp','ssh']
  1460.  
  1461. CONFIG_NOVA_COMPUTE_MIGRATE_PROTOCOL=tcp
  1462.  
  1463.  
  1464.  
  1465. # Manager that runs the Compute service.
  1466.  
  1467. CONFIG_NOVA_COMPUTE_MANAGER=nova.compute.manager.ComputeManager
  1468.  
  1469.  
  1470.  
  1471. # PEM encoded certificate to be used for ssl on the https server,
  1472.  
  1473. # leave blank if one should be generated,this certificate should not
  1474.  
  1475. # require a passphrase. If CONFIG_HORIZON_SSL is set to 'n' this
  1476.  
  1477. # parameter is ignored.
  1478.  
  1479. CONFIG_VNC_SSL_CERT=
  1480.  
  1481.  
  1482.  
  1483. # SSL keyfile corresponding to the certificate if one was entered. If
  1484.  
  1485. # CONFIG_HORIZON_SSL is set to 'n' this parameter is ignored.
  1486.  
  1487. CONFIG_VNC_SSL_KEY=
  1488.  
  1489.  
  1490.  
  1491. # Enter the PCI passthrough array of hash in JSON style for
  1492.  
  1493. # controller eg. [{"vendor_id":"1234","product_id":"5678",
  1494.  
  1495. # "name":"default"},{...}]
  1496.  
  1497. CONFIG_NOVA_PCI_ALIAS=
  1498.  
  1499.  
  1500.  
  1501. # Enter the PCI passthrough whitelist array of hash in JSON style for
  1502.  
  1503. # controller eg. [{"vendor_id":"1234",
  1504.  
  1505. # "name':"default"},{...}]
  1506.  
  1507. CONFIG_NOVA_PCI_PASSTHROUGH_WHITELIST=
  1508.  
  1509.  
  1510.  
  1511. # Private interface for flat DHCP on the Compute servers.
  1512.  
  1513. CONFIG_NOVA_COMPUTE_PRIVIF=
  1514.  
  1515.  
  1516.  
  1517. # Compute Network Manager. ['^nova\.network\.manager\.\w+Manager$']
  1518.  
  1519. CONFIG_NOVA_NETWORK_MANAGER=nova.network.manager.FlatDHCPManager
  1520.  
  1521.  
  1522.  
  1523. # Public interface on the Compute network server.
  1524.  
  1525. CONFIG_NOVA_NETWORK_PUBIF=eth0
  1526.  
  1527.  
  1528.  
  1529. # Private interface for flat DHCP on the Compute network server.
  1530.  
  1531. CONFIG_NOVA_NETWORK_PRIVIF=
  1532.  
  1533.  
  1534.  
  1535. # IP Range for flat DHCP. ['^[\:\.\da-fA-f]+(\/\d+){0,1}$']
  1536.  
  1537. CONFIG_NOVA_NETWORK_FIXEDRANGE=192.168.32.0/22
  1538.  
  1539.  
  1540.  
  1541. # IP Range for floating IP addresses. ['^[\:\.\da-
  1542.  
  1543. # fA-f]+(\/\d+){0,1}$']
  1544.  
  1545. CONFIG_NOVA_NETWORK_FLOATRANGE=10.3.4.0/22
  1546.  
  1547.  
  1548.  
  1549. # Specify 'y' to automatically assign a floating IP to new instances.
  1550.  
  1551. # ['y','n']
  1552.  
  1553. CONFIG_NOVA_NETWORK_AUTOASSIGNFLOATINGIP=n
  1554.  
  1555.  
  1556.  
  1557. # First VLAN for private networks (Compute networking).
  1558.  
  1559. CONFIG_NOVA_NETWORK_VLAN_START=100
  1560.  
  1561.  
  1562.  
  1563. # Number of networks to support (Compute networking).
  1564.  
  1565. CONFIG_NOVA_NETWORK_NUMBER=1
  1566.  
  1567.  
  1568.  
  1569. # Number of addresses in each private subnet (Compute networking).
  1570.  
  1571. CONFIG_NOVA_NETWORK_SIZE=255
  1572.  
  1573.  
  1574.  
  1575. # Password to use for OpenStack Networking (neutron) to authenticate
  1576.  
  1577. # with the Identity service.
  1578.  
  1579. CONFIG_NEUTRON_KS_PW=0f93966d6de04e8d
  1580.  
  1581.  
  1582.  
  1583. # The password to use for OpenStack Networking to access the
  1584.  
  1585. # database.
  1586.  
  1587. CONFIG_NEUTRON_DB_PW=6d506e19899e4a3f
  1588.  
  1589.  
  1590.  
  1591. # The name of the Open vSwitch bridge (or empty for linuxbridge) for
  1592.  
  1593. # the OpenStack Networking L3 agent to use for external traffic.
  1594.  
  1595. # Specify 'provider' if you intend to use a provider network to handle
  1596.  
  1597. # external traffic.
  1598.  
  1599. CONFIG_NEUTRON_L3_EXT_BRIDGE=br-ex
  1600.  
  1601.  
  1602.  
  1603. # Password for the OpenStack Networking Metadata agent.
  1604.  
  1605. CONFIG_NEUTRON_MetaDATA_PW=f7db67c5f3024050
  1606.  
  1607.  
  1608.  
  1609. # Specify 'y' to install OpenStack Networking's Load-Balancing-
  1610.  
  1611. # as-a-Service (LBaaS). ['y','n']
  1612.  
  1613. CONFIG_LBAAS_INSTALL=n
  1614.  
  1615.  
  1616.  
  1617. # Specify 'y' to install OpenStack Networking's L3 Metering agent
  1618.  
  1619. # ['y','n']
  1620.  
  1621. CONFIG_NEUTRON_METERING_AGENT_INSTALL=y
  1622.  
  1623.  
  1624.  
  1625. # Specify 'y' to configure OpenStack Networking's Firewall-
  1626.  
  1627. # as-a-Service (FWaaS). ['y','n']
  1628.  
  1629. CONFIG_NEUTRON_FWAAS=n
  1630.  
  1631.  
  1632.  
  1633. # Specify 'y' to configure OpenStack Networking's VPN-as-a-Service
  1634.  
  1635. # (VPNaaS). ['y','n']
  1636.  
  1637. CONFIG_NEUTRON_VPNAAS=n
  1638.  
  1639.  
  1640.  
  1641. # Comma-separated list of network-type driver entry points to be
  1642.  
  1643. # loaded from the neutron.ml2.type_drivers namespace. ['local',
  1644.  
  1645. # 'flat','vlan','gre','vxlan']
  1646.  
  1647. CONFIG_NEUTRON_ML2_TYPE_DRIVERS=vxlan
  1648.  
  1649.  
  1650.  
  1651. # Comma-separated,ordered list of network types to allocate as
  1652.  
  1653. # tenant networks. The 'local' value is only useful for single-Box
  1654.  
  1655. # testing and provides no connectivity between hosts. ['local',
  1656.  
  1657. # 'vlan','vxlan']
  1658.  
  1659. CONFIG_NEUTRON_ML2_TENANT_NETWORK_TYPES=vxlan
  1660.  
  1661.  
  1662.  
  1663. # Comma-separated ordered list of networking mechanism driver entry
  1664.  
  1665. # points to be loaded from the neutron.ml2.mechanism_drivers
  1666.  
  1667. # namespace. ['logger','test','linuxbridge','openvswitch',
  1668.  
  1669. # 'hyperv','ncs','arista','cisco_nexus','mlnx','l2population',
  1670.  
  1671. # 'sriovnicswitch']
  1672.  
  1673. CONFIG_NEUTRON_ML2_MECHANISM_DRIVERS=openvswitch
  1674.  
  1675.  
  1676.  
  1677. # Comma-separated list of physical_network names with which flat
  1678.  
  1679. # networks can be created. Use * to allow flat networks with arbitrary
  1680.  
  1681. # physical_network names.
  1682.  
  1683. CONFIG_NEUTRON_ML2_FLAT_NETWORKS=*
  1684.  
  1685.  
  1686.  
  1687. # Comma-separated list of <physical_network>:<vlan_min>:<vlan_max> or
  1688.  
  1689. # <physical_network> specifying physical_network names usable for VLAN
  1690.  
  1691. # provider and tenant networks,as well as ranges of VLAN tags on each
  1692.  
  1693. # available for allocation to tenant networks.
  1694.  
  1695. CONFIG_NEUTRON_ML2_VLAN_RANGES=
  1696.  
  1697.  
  1698.  
  1699. # Comma-separated list of <tun_min>:<tun_max> tuples enumerating
  1700.  
  1701. # ranges of GRE tunnel IDs that are available for tenant-network
  1702.  
  1703. # allocation. A tuple must be an array with tun_max +1 - tun_min >
  1704.  
  1705. # 1000000.
  1706.  
  1707. CONFIG_NEUTRON_ML2_TUNNEL_ID_RANGES=
  1708.  
  1709.  
  1710.  
  1711. # Comma-separated list of addresses for VXLAN multicast group. If
  1712.  
  1713. # left empty,disables VXLAN from sending allocate broadcast traffic
  1714.  
  1715. # (disables multicast VXLAN mode). Should be a Multicast IP (v4 or v6)
  1716.  
  1717. # address.
  1718.  
  1719. CONFIG_NEUTRON_ML2_VXLAN_GROUP=
  1720.  
  1721.  
  1722.  
  1723. # Comma-separated list of <vni_min>:<vni_max> tuples enumerating
  1724.  
  1725. # ranges of VXLAN VNI IDs that are available for tenant network
  1726.  
  1727. # allocation. Minimum value is 0 and maximum value is 16777215.
  1728.  
  1729. CONFIG_NEUTRON_ML2_VNI_RANGES=10:100
  1730.  
  1731.  
  1732.  
  1733. # Name of the L2 agent to be used with OpenStack Networking.
  1734.  
  1735. # ['linuxbridge','openvswitch']
  1736.  
  1737. CONFIG_NEUTRON_L2_AGENT=openvswitch
  1738.  
  1739.  
  1740.  
  1741. # Comma separated list of supported PCI vendor devices defined by
  1742.  
  1743. # vendor_id:product_id according to the PCI ID Repository.
  1744.  
  1745. CONFIG_NEUTRON_ML2_SUPPORTED_PCI_VENDOR_DEVS=['15b3:1004','8086:10ca']
  1746.  
  1747.  
  1748.  
  1749. # Specify 'y' if the sriov agent is required
  1750.  
  1751. CONFIG_NEUTRON_ML2_SRIOV_AGENT_required=n
  1752.  
  1753.  
  1754.  
  1755. # Comma-separated list of interface mappings for the OpenStack
  1756.  
  1757. # Networking ML2 SRIOV agent. Each tuple in the list must be in the
  1758.  
  1759. # format <physical_network>:<net_interface>. Example:
  1760.  
  1761. # physnet1:eth1,physnet2:eth2,physnet3:eth3.
  1762.  
  1763. CONFIG_NEUTRON_ML2_SRIOV_INTERFACE_MAPPINGS=
  1764.  
  1765.  
  1766.  
  1767. # Comma-separated list of interface mappings for the OpenStack
  1768.  
  1769. # Networking linuxbridge plugin. Each tuple in the list must be in the
  1770.  
  1771. # format <physical_network>:<net_interface>. Example:
  1772.  
  1773. # physnet1:eth1,physnet3:eth3.
  1774.  
  1775. CONFIG_NEUTRON_LB_INTERFACE_MAPPINGS=
  1776.  
  1777.  
  1778.  
  1779. # Comma-separated list of bridge mappings for the OpenStack
  1780.  
  1781. # Networking Open vSwitch plugin. Each tuple in the list must be in
  1782.  
  1783. # the format <physical_network>:<ovs_bridge>. Example: physnet1:br-
  1784.  
  1785. # eth1,physnet2:br-eth2,physnet3:br-eth3
  1786.  
  1787. CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS=
  1788.  
  1789.  
  1790.  
  1791. # Comma-separated list of colon-separated Open vSwitch
  1792.  
  1793. # <bridge>:<interface> pairs. The interface will be added to the
  1794.  
  1795. # associated bridge. If you desire the bridge to be persistent a value
  1796.  
  1797. # must be added to this directive,also
  1798.  
  1799. # CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS must be set in order to create
  1800.  
  1801. # the proper port. This can be achieved from the command line by
  1802.  
  1803. # issuing the following command: packstack --allinone --os-neutron-
  1804.  
  1805. # ovs-bridge-mappings=ext-net:br-ex --os-neutron-ovs-bridge-interfaces
  1806.  
  1807. # =br-ex:eth0
  1808.  
  1809. CONFIG_NEUTRON_OVS_BRIDGE_IFACES=
  1810.  
  1811.  
  1812.  
  1813. # Comma-separated list of Open vSwitch bridges that must be created
  1814.  
  1815. # and connected to interfaces in compute nodes when flat or vlan type
  1816.  
  1817. # drivers are enabled. These bridges must exist in
  1818.  
  1819. # CONFIG_NEUTRON_OVS_BRIDGE_MAPPINGS and
  1820.  
  1821. # CONFIG_NEUTRON_OVS_BRIDGE_IFACES. Example: --os-neutron-ovs-bridges-
  1822.  
  1823. # compute=br-vlan --os-neutron-ovs-bridge-mappings="extnet:br-
  1824.  
  1825. # ex,physnet1:br-vlan" --os-neutron-ovs-bridge-interfaces="br-ex:eth1
  1826.  
  1827. #,br-vlan:eth2"
  1828.  
  1829. CONFIG_NEUTRON_OVS_BRIDGES_COMPUTE=
  1830.  
  1831.  
  1832.  
  1833. # Interface for the Open vSwitch tunnel. Packstack overrides the IP
  1834.  
  1835. # address used for tunnels on this hypervisor to the IP found on the
  1836.  
  1837. # specified interface (for example,eth1).
  1838.  
  1839. CONFIG_NEUTRON_OVS_TUNNEL_IF=
  1840.  
  1841.  
  1842.  
  1843. # Comma-separated list of subnets (for example,
  1844.  
  1845. # 192.168.10.0/24,192.168.11.0/24) used for sending tunneling packets.
  1846.  
  1847. # This is used to configure IP filtering to accept tunneling packets
  1848.  
  1849. # from these subnets instead of specific IP addresses of peer nodes.
  1850.  
  1851. # This is useful when you add existing nodes to EXCLUDE_SERVERS
  1852.  
  1853. # because,in this case,packstack cannot modify the IP filtering of
  1854.  
  1855. # the existing nodes.
  1856.  
  1857. CONFIG_NEUTRON_OVS_TUNNEL_SUBNETS=
  1858.  
  1859.  
  1860.  
  1861. # VXLAN UDP port.
  1862.  
  1863. CONFIG_NEUTRON_OVS_VXLAN_UDP_PORT=4789
  1864.  
  1865.  
  1866.  
  1867. # Password to use for the OpenStack File Share service (manila) to
  1868.  
  1869. # access the database.
  1870.  
  1871. CONFIG_MANILA_DB_PW=05a1afde52ee4dca
  1872.  
  1873.  
  1874.  
  1875. # Password to use for the OpenStack File Share service (manila) to
  1876.  
  1877. # authenticate with the Identity service.
  1878.  
  1879. CONFIG_MANILA_KS_PW=d68b8a1e35c54d89
  1880.  
  1881.  
  1882.  
  1883. # Backend for the OpenStack File Share service (manila); valid
  1884.  
  1885. # options are: generic,netapp,glusternative,or glusternfs.
  1886.  
  1887. # ['generic','netapp','glusternative','glusternfs']
  1888.  
  1889. CONFIG_MANILA_BACKEND=generic
  1890.  
  1891.  
  1892.  
  1893. # Denotes whether the driver should handle the responsibility of
  1894.  
  1895. # managing share servers. This must be set to false if the driver is
  1896.  
  1897. # to operate without managing share servers. Defaults to 'false'
  1898.  
  1899. # ['true','false']
  1900.  
  1901. CONFIG_MANILA_NETAPP_DRV_HANDLES_SHARE_SERVERS=false
  1902.  
  1903.  
  1904.  
  1905. # The transport protocol used when communicating with the storage
  1906.  
  1907. # system or proxy server. Valid values are 'http' and 'https'.
  1908.  
  1909. # Defaults to 'https'. ['https','http']
  1910.  
  1911. CONFIG_MANILA_NETAPP_TRANSPORT_TYPE=https
  1912.  
  1913.  
  1914.  
  1915. # Administrative user account name used to access the NetApp storage
  1916.  
  1917. # system. Defaults to ''.
  1918.  
  1919. CONFIG_MANILA_NETAPP_LOGIN=admin
  1920.  
  1921.  
  1922.  
  1923. # Password for the NetApp administrative user account specified in
  1924.  
  1925. # the CONFIG_MANILA_NETAPP_LOGIN parameter. Defaults to ''.
  1926.  
  1927. CONFIG_MANILA_NETAPP_PASSWORD=
  1928.  
  1929.  
  1930.  
  1931. # Hostname (or IP address) for the NetApp storage system or proxy
  1932.  
  1933. # server. Defaults to ''.
  1934.  
  1935. CONFIG_MANILA_NETAPP_SERVER_HOSTNAME=
  1936.  
  1937.  
  1938.  
  1939. # The storage family type used on the storage system; valid values
  1940.  
  1941. # are ontap_cluster for clustered Data ONTAP. Defaults to
  1942.  
  1943. # 'ontap_cluster'. ['ontap_cluster']
  1944.  
  1945. CONFIG_MANILA_NETAPP_STORAGE_FAMILY=ontap_cluster
  1946.  
  1947.  
  1948.  
  1949. # The TCP port to use for communication with the storage system or
  1950.  
  1951. # proxy server. If not specified,Data ONTAP drivers will use 80 for
  1952.  
  1953. # HTTP and 443 for HTTPS. Defaults to '443'.
  1954.  
  1955. CONFIG_MANILA_NETAPP_SERVER_PORT=443
  1956.  
  1957.  
  1958.  
  1959. # Pattern for searching available aggregates for NetApp provisioning.
  1960.  
  1961. # Defaults to '(.*)'.
  1962.  
  1963. CONFIG_MANILA_NETAPP_AGGREGATE_NAME_SEARCH_PATTERN=(.*)
  1964.  
  1965.  
  1966.  
  1967. # Name of aggregate on which to create the NetApp root volume. This
  1968.  
  1969. # option only applies when the option
  1970.  
  1971. # CONFIG_MANILA_NETAPP_DRV_HANDLES_SHARE_SERVERS is set to True.
  1972.  
  1973. CONFIG_MANILA_NETAPP_ROOT_VOLUME_AGGREGATE=
  1974.  
  1975.  
  1976.  
  1977. # NetApp root volume name. Defaults to 'root'.
  1978.  
  1979. CONFIG_MANILA_NETAPP_ROOT_VOLUME_NAME=root
  1980.  
  1981.  
  1982.  
  1983. # This option specifies the storage virtual machine (prevIoUsly
  1984.  
  1985. # called a Vserver) name on the storage cluster on which provisioning
  1986.  
  1987. # of shared file systems should occur. This option only applies when
  1988.  
  1989. # the option driver_handles_share_servers is set to False. Defaults to
  1990.  
  1991. # ''.
  1992.  
  1993. CONFIG_MANILA_NETAPP_VSERVER=
  1994.  
  1995.  
  1996.  
  1997. # Denotes whether the driver should handle the responsibility of
  1998.  
  1999. # managing share servers. This must be set to false if the driver is
  2000.  
  2001. # to operate without managing share servers. Defaults to 'true'.
  2002.  
  2003. # ['true','false']
  2004.  
  2005. CONFIG_MANILA_GENERIC_DRV_HANDLES_SHARE_SERVERS=true
  2006.  
  2007.  
  2008.  
  2009. # Volume name template for Manila service. Defaults to 'manila-
  2010.  
  2011. # share-%s'.
  2012.  
  2013. CONFIG_MANILA_GENERIC_VOLUME_NAME_TEMPLATE=manila-share-%s
  2014.  
  2015.  
  2016.  
  2017. # Share mount path for Manila service. Defaults to '/shares'.
  2018.  
  2019. CONFIG_MANILA_GENERIC_SHARE_MOUNT_PATH=/shares
  2020.  
  2021.  
  2022.  
  2023. # Location of disk image for Manila service instance. Defaults to '
  2024.  
  2025. CONFIG_MANILA_SERVICE_IMAGE_LOCATION=http://192.168.117.129/centos/help/files/manila-service-image.qcow2
  2026.  
  2027.  
  2028.  
  2029. # User in Manila service instance.
  2030.  
  2031. CONFIG_MANILA_SERVICE_INSTANCE_USER=manila
  2032.  
  2033.  
  2034.  
  2035. # Password to service instance user.
  2036.  
  2037. CONFIG_MANILA_SERVICE_INSTANCE_PASSWORD=manila
  2038.  
  2039.  
  2040.  
  2041. # Type of networking that the backend will use. A more detailed
  2042.  
  2043. # description of each option is available in the Manila docs. Defaults
  2044.  
  2045. # to 'neutron'. ['neutron','nova-network','standalone']
  2046.  
  2047. CONFIG_MANILA_NETWORK_TYPE=neutron
  2048.  
  2049.  
  2050.  
  2051. # Gateway IPv4 address that should be used. required. Defaults to ''.
  2052.  
  2053. CONFIG_MANILA_NETWORK_STANDALONE_GATEWAY=
  2054.  
  2055.  
  2056.  
  2057. # Network mask that will be used. Can be either decimal like '24' or
  2058.  
  2059. # binary like '255.255.255.0'. required. Defaults to ''.
  2060.  
  2061. CONFIG_MANILA_NETWORK_STANDALONE_NETMASK=
  2062.  
  2063.  
  2064.  
  2065. # Set it if network has segmentation (VLAN,VXLAN,etc). It will be
  2066.  
  2067. # assigned to share-network and share drivers will be able to use this
  2068.  
  2069. # for network interfaces within provisioned share servers. Optional.
  2070.  
  2071. # Example: 1001. Defaults to ''.
  2072.  
  2073. CONFIG_MANILA_NETWORK_STANDALONE_SEG_ID=
  2074.  
  2075.  
  2076.  
  2077. # Can be IP address,range of IP addresses or list of addresses or
  2078.  
  2079. # ranges. Contains addresses from IP network that are allowed to be
  2080.  
  2081. # used. If empty,then will be assumed that all host addresses from
  2082.  
  2083. # network can be used. Optional. Examples: 10.0.0.10 or
  2084.  
  2085. # 10.0.0.10-10.0.0.20 or
  2086.  
  2087. # 10.0.0.10-10.0.0.20,10.0.0.30-10.0.0.40,10.0.0.50. Defaults to ''.
  2088.  
  2089. CONFIG_MANILA_NETWORK_STANDALONE_IP_RANGE=
  2090.  
  2091.  
  2092.  
  2093. # IP version of network. Optional. Defaults to '4'. ['4','6']
  2094.  
  2095. CONFIG_MANILA_NETWORK_STANDALONE_IP_VERSION=4
  2096.  
  2097.  
  2098.  
  2099. # List of GlusterFS servers that can be used to create shares. Each
  2100.  
  2101. # GlusterFS server should be of the form [remoteuser@]<volserver>,and
  2102.  
  2103. # they are assumed to belong to distinct Gluster clusters.
  2104.  
  2105. CONFIG_MANILA_GLUSTERFS_SERVERS=
  2106.  
  2107.  
  2108.  
  2109. # Path of Manila host's private SSH key file.
  2110.  
  2111. CONFIG_MANILA_GLUSTERFS_NATIVE_PATH_TO_PRIVATE_KEY=
  2112.  
  2113.  
  2114.  
  2115. # Regular expression template used to filter GlusterFS volumes for
  2116.  
  2117. # share creation. The regex template can optionally (ie. with support
  2118.  
  2119. # of the GlusterFS backend) contain the #{size} parameter which
  2120.  
  2121. # matches an integer (sequence of digits) in which case the value
  2122.  
  2123. # shall be intepreted as size of the volume in GB. Examples: "manila-
  2124.  
  2125. # share-volume-d+$","manila-share-volume-#{size}G-d+$"; with matching
  2126.  
  2127. # volume names,respectively: "manila-share-volume-12","manila-share-
  2128.  
  2129. # volume-3G-13". In latter example,the number that matches "#{size}",
  2130.  
  2131. # that is,3,is an indication that the size of volume is 3G.
  2132.  
  2133. CONFIG_MANILA_GLUSTERFS_VOLUME_PATTERN=
  2134.  
  2135.  
  2136.  
  2137. # Specifies the GlusterFS volume to be mounted on the Manila host.
  2138.  
  2139. # For e.g: [remoteuser@]<volserver>:/<volid>
  2140.  
  2141. CONFIG_MANILA_GLUSTERFS_TARGET=
  2142.  
  2143.  
  2144.  
  2145. # Base directory containing mount points for Gluster volumes.
  2146.  
  2147. CONFIG_MANILA_GLUSTERFS_MOUNT_POINT_BASE=
  2148.  
  2149.  
  2150.  
  2151. # Type of NFS server that mediate access to the Gluster volumes
  2152.  
  2153. # (Gluster or Ganesha).
  2154.  
  2155. CONFIG_MANILA_GLUSTERFS_NFS_SERVER_TYPE=gluster
  2156.  
  2157.  
  2158.  
  2159. # Path of Manila host's private SSH key file.
  2160.  
  2161. CONFIG_MANILA_GLUSTERFS_PATH_TO_PRIVATE_KEY=
  2162.  
  2163.  
  2164.  
  2165. # Remote Ganesha server node's IP address.
  2166.  
  2167. CONFIG_MANILA_GLUSTERFS_GANESHA_SERVER_IP=
  2168.  
  2169.  
  2170.  
  2171. # Specify 'y' to set up Horizon communication over https. ['y','n']
  2172.  
  2173. CONFIG_HORIZON_SSL=n
  2174.  
  2175.  
  2176.  
  2177. # Secret key to use for Horizon Secret Encryption Key.
  2178.  
  2179. CONFIG_HORIZON_SECRET_KEY=4c5dae8f4f124d68bf2516083b38b292
  2180.  
  2181.  
  2182.  
  2183. # PEM-encoded certificate to be used for SSL connections on the https
  2184.  
  2185. # server. To generate a certificate,leave blank.
  2186.  
  2187. CONFIG_HORIZON_SSL_CERT=
  2188.  
  2189.  
  2190.  
  2191. # SSL keyfile corresponding to the certificate if one was specified.
  2192.  
  2193. # The certificate should not require a passphrase.
  2194.  
  2195. CONFIG_HORIZON_SSL_KEY=
  2196.  
  2197.  
  2198.  
  2199. CONFIG_HORIZON_SSL_CACERT=
  2200.  
  2201.  
  2202.  
  2203. # Password to use for the Object Storage service to authenticate with
  2204.  
  2205. # the Identity service.
  2206.  
  2207. CONFIG_SWIFT_KS_PW=dff5fe32de494c99
  2208.  
  2209.  
  2210.  
  2211. # Comma-separated list of devices to use as storage device for Object
  2212.  
  2213. # Storage. Each entry must take the format /path/to/dev (for example,
  2214.  
  2215. # specifying /dev/vdb installs /dev/vdb as the Object Storage storage
  2216.  
  2217. # device; Packstack does not create the filesystem,you must do this
  2218.  
  2219. # first). If left empty,Packstack creates a loopback device for test
  2220.  
  2221. # setup.
  2222.  
  2223. CONFIG_SWIFT_STORAGES=
  2224.  
  2225.  
  2226.  
  2227. # Number of Object Storage storage zones; this number MUST be no
  2228.  
  2229. # larger than the number of configured storage devices.
  2230.  
  2231. CONFIG_SWIFT_STORAGE_ZONES=1
  2232.  
  2233.  
  2234.  
  2235. # Number of Object Storage storage replicas; this number MUST be no
  2236.  
  2237. # larger than the number of configured storage zones.
  2238.  
  2239. CONFIG_SWIFT_STORAGE_REPLICAS=1
  2240.  
  2241.  
  2242.  
  2243. # File system type for storage nodes. ['xfs','ext4']
  2244.  
  2245. CONFIG_SWIFT_STORAGE_FSTYPE=ext4
  2246.  
  2247.  
  2248.  
  2249. # Custom seed number to use for swift_hash_path_suffix in
  2250.  
  2251. # /etc/swift/swift.conf. If you do not provide a value,a seed number
  2252.  
  2253. # is automatically generated.
  2254.  
  2255. CONFIG_SWIFT_HASH=01da2433204e416b
  2256.  
  2257.  
  2258.  
  2259. # Size of the Object Storage loopback file storage device.
  2260.  
  2261. CONFIG_SWIFT_STORAGE_SIZE=2G
  2262.  
  2263.  
  2264.  
  2265. # Password used by Orchestration service user to authenticate against
  2266.  
  2267. # the database.
  2268.  
  2269. CONFIG_HEAT_DB_PW=PW_PLACEHOLDER
  2270.  
  2271.  
  2272.  
  2273. # Encryption key to use for authentication in the Orchestration
  2274.  
  2275. # database (16,24,or 32 chars).
  2276.  
  2277. CONFIG_HEAT_AUTH_ENC_KEY=8aecdfeb31124de5
  2278.  
  2279.  
  2280.  
  2281. # Password to use for the Orchestration service to authenticate with
  2282.  
  2283. # the Identity service.
  2284.  
  2285. CONFIG_HEAT_KS_PW=PW_PLACEHOLDER
  2286.  
  2287.  
  2288.  
  2289. # Specify 'y' to install the Orchestration CloudWatch API. ['y','n']
  2290.  
  2291. CONFIG_HEAT_CLOUDWATCH_INSTALL=n
  2292.  
  2293.  
  2294.  
  2295. # Specify 'y' to install the Orchestration CloudFormation API. ['y',
  2296.  
  2297. # 'n']
  2298.  
  2299. CONFIG_HEAT_CFN_INSTALL=n
  2300.  
  2301.  
  2302.  
  2303. # Name of the Identity domain for Orchestration.
  2304.  
  2305. CONFIG_HEAT_DOMAIN=heat
  2306.  
  2307.  
  2308.  
  2309. # Name of the Identity domain administrative user for Orchestration.
  2310.  
  2311. CONFIG_HEAT_DOMAIN_ADMIN=heat_admin
  2312.  
  2313.  
  2314.  
  2315. # Password for the Identity domain administrative user for
  2316.  
  2317. # Orchestration.
  2318.  
  2319. CONFIG_HEAT_DOMAIN_PASSWORD=PW_PLACEHOLDER
  2320.  
  2321.  
  2322.  
  2323. # Specify 'y' to provision for demo usage and testing. ['y','n']
  2324.  
  2325. CONFIG_PROVISION_DEMO=y
  2326.  
  2327.  
  2328.  
  2329. # Specify 'y' to configure the OpenStack Integration Test Suite
  2330.  
  2331. # (tempest) for testing. The test suite requires OpenStack Networking
  2332.  
  2333. # to be installed. ['y','n']
  2334.  
  2335. CONFIG_PROVISION_TEMPEST=n
  2336.  
  2337.  
  2338.  
  2339. # CIDR network address for the floating IP subnet.
  2340.  
  2341. CONFIG_PROVISION_DEMO_FLOATRANGE=172.24.4.224/28
  2342.  
  2343.  
  2344.  
  2345. # The name to be assigned to the demo image in Glance (default
  2346.  
  2347. # "cirros").
  2348.  
  2349. CONFIG_PROVISION_IMAGE_NAME=cirros
  2350.  
  2351.  
  2352.  
  2353. # A URL or local file location for an image to download and provision
  2354.  
  2355. # in Glance (defaults to a URL for a recent "cirros" image).
  2356.  
  2357. CONFIG_PROVISION_IMAGE_URL=http://192.168.117.129/centos/help/files/cirros-0.3.4-x86_64-disk.img
  2358.  
  2359.  
  2360.  
  2361. # Format for the demo image (default "qcow2").
  2362.  
  2363. CONFIG_PROVISION_IMAGE_FORMAT=qcow2
  2364.  
  2365.  
  2366.  
  2367. # User to use when connecting to instances booted from the demo
  2368.  
  2369. # image.
  2370.  
  2371. CONFIG_PROVISION_IMAGE_SSH_USER=cirros
  2372.  
  2373.  
  2374.  
  2375. CONFIG_TEMPEST_HOST=
  2376.  
  2377.  
  2378.  
  2379. # Name of the Integration Test Suite provisioning user. If you do not
  2380.  
  2381. # provide a user name,Tempest is configured in a standalone mode.
  2382.  
  2383. CONFIG_PROVISION_TEMPEST_USER=
  2384.  
  2385.  
  2386.  
  2387. # Password to use for the Integration Test Suite provisioning user.
  2388.  
  2389. CONFIG_PROVISION_TEMPEST_USER_PW=PW_PLACEHOLDER
  2390.  
  2391.  
  2392.  
  2393. # CIDR network address for the floating IP subnet.
  2394.  
  2395. CONFIG_PROVISION_TEMPEST_FLOATRANGE=172.24.4.224/28
  2396.  
  2397.  
  2398.  
  2399. # URI of the Integration Test Suite git repository.
  2400.  
  2401. CONFIG_PROVISION_TEMPEST_REPO_URI=https://github.com/openstack/tempest.git
  2402.  
  2403.  
  2404.  
  2405. # Revision (branch) of the Integration Test Suite git repository.
  2406.  
  2407. CONFIG_PROVISION_TEMPEST_REPO_REVISION=master
  2408.  
  2409.  
  2410.  
  2411. # Specify 'y' to run Tempest smoke test as last step of installation.
  2412.  
  2413. CONFIG_RUN_TEMPEST=n
  2414.  
  2415.  
  2416.  
  2417. # Test suites to run,example: "smoke dashboard TelemetryAlarming".
  2418.  
  2419. # Optional,defaults to "smoke".
  2420.  
  2421. CONFIG_RUN_TEMPEST_TESTS=smoke
  2422.  
  2423.  
  2424.  
  2425. # Specify 'y' to configure the Open vSwitch external bridge for an
  2426.  
  2427. # all-in-one deployment (the L3 external bridge acts as the gateway
  2428.  
  2429. # for virtual machines). ['y','n']
  2430.  
  2431. CONFIG_PROVISION_OVS_BRIDGE=y
  2432.  
  2433.  
  2434.  
  2435. # Password to use for Gnocchi to access the database.
  2436.  
  2437. CONFIG_GNOCCHI_DB_PW=f40e4c770e3b4d1c
  2438.  
  2439.  
  2440.  
  2441. # Password to use for Gnocchi to authenticate with the Identity
  2442.  
  2443. # service.
  2444.  
  2445. CONFIG_GNOCCHI_KS_PW=314a530c538048f9
  2446.  
  2447.  
  2448.  
  2449. # Secret key for signing Telemetry service (ceilometer) messages.
  2450.  
  2451. CONFIG_CEILOMETER_SECRET=e0dccc8ed8024c16
  2452.  
  2453.  
  2454.  
  2455. # Password to use for Telemetry to authenticate with the Identity
  2456.  
  2457. # service.
  2458.  
  2459. CONFIG_CEILOMETER_KS_PW=4c2b90ee71664e5e
  2460.  
  2461.  
  2462.  
  2463. # Ceilometer service name. ['httpd','ceilometer']
  2464.  
  2465. CONFIG_CEILOMETER_SERVICE_NAME=httpd
  2466.  
  2467.  
  2468.  
  2469. # Backend driver for Telemetry's group membership coordination.
  2470.  
  2471. # ['redis','none']
  2472.  
  2473. CONFIG_CEILOMETER_COORDINATION_BACKEND=redis
  2474.  
  2475.  
  2476.  
  2477. # Backend driver for Telemetry's metering backend configuration.
  2478.  
  2479. # ['database','gnocchi']
  2480.  
  2481. CONFIG_CEILOMETER_METERING_BACKEND=database
  2482.  
  2483.  
  2484.  
  2485. # IP address of the server on which to install MongoDB.
  2486.  
  2487. CONFIG_MONGODB_HOST=10.0.2.15
  2488.  
  2489.  
  2490.  
  2491. # IP address of the server on which to install the Redis master
  2492.  
  2493. # server.
  2494.  
  2495. CONFIG_REDIS_MASTER_HOST=10.0.2.15
  2496.  
  2497.  
  2498.  
  2499. # Port on which the Redis server(s) listens.
  2500.  
  2501. CONFIG_REDIS_PORT=6379
  2502.  
  2503.  
  2504.  
  2505. # Specify 'y' to have Redis try to use HA. ['y','n']
  2506.  
  2507. CONFIG_REDIS_HA=n
  2508.  
  2509.  
  2510.  
  2511. # Hosts on which to install Redis slaves.
  2512.  
  2513. CONFIG_REDIS_SLAVE_HOSTS=10.0.2.15
  2514.  
  2515.  
  2516.  
  2517. # Hosts on which to install Redis sentinel servers.
  2518.  
  2519. CONFIG_REDIS_SENTINEL_HOSTS=10.0.2.15
  2520.  
  2521.  
  2522.  
  2523. # Host to configure as the Redis coordination sentinel.
  2524.  
  2525. CONFIG_REDIS_SENTINEL_CONTACT_HOST=10.0.2.15
  2526.  
  2527.  
  2528.  
  2529. # Port on which Redis sentinel servers listen.
  2530.  
  2531. CONFIG_REDIS_SENTINEL_PORT=26379
  2532.  
  2533.  
  2534.  
  2535. # Quorum value for Redis sentinel servers.
  2536.  
  2537. CONFIG_REDIS_SENTINEL_QUORUM=2
  2538.  
  2539.  
  2540.  
  2541. # Name of the master server watched by the Redis sentinel. ['[a-z]+']
  2542.  
  2543. CONFIG_REDIS_MASTER_NAME=mymaster
  2544.  
  2545.  
  2546.  
  2547. # Password to use for Telemetry Alarming to authenticate with the
  2548.  
  2549. # Identity service.
  2550.  
  2551. CONFIG_AODH_KS_PW=739a1dae2a254e6a
  2552.  
  2553.  
  2554.  
  2555. # Password to use for OpenStack Database-as-a-Service (trove) to
  2556.  
  2557. # access the database.
  2558.  
  2559. CONFIG_TROVE_DB_PW=PW_PLACEHOLDER
  2560.  
  2561.  
  2562.  
  2563. # Password to use for OpenStack Database-as-a-Service to authenticate
  2564.  
  2565. # with the Identity service.
  2566.  
  2567. CONFIG_TROVE_KS_PW=PW_PLACEHOLDER
  2568.  
  2569.  
  2570.  
  2571. # User name to use when OpenStack Database-as-a-Service connects to
  2572.  
  2573. # the Compute service.
  2574.  
  2575. CONFIG_TROVE_NOVA_USER=trove
  2576.  
  2577.  
  2578.  
  2579. # Tenant to use when OpenStack Database-as-a-Service connects to the
  2580.  
  2581. # Compute service.
  2582.  
  2583. CONFIG_TROVE_NOVA_TENANT=services
  2584.  
  2585.  
  2586.  
  2587. # Password to use when OpenStack Database-as-a-Service connects to
  2588.  
  2589. # the Compute service.
  2590.  
  2591. CONFIG_TROVE_NOVA_PW=PW_PLACEHOLDER
  2592.  
  2593.  
  2594.  
  2595. # Password to use for OpenStack Data Processing (sahara) to access
  2596.  
  2597. # the database.
  2598.  
  2599. CONFIG_SAHARA_DB_PW=PW_PLACEHOLDER
  2600.  
  2601.  
  2602.  
  2603. # Password to use for OpenStack Data Processing to authenticate with
  2604.  
  2605. # the Identity service.
  2606.  
  2607. CONFIG_SAHARA_KS_PW=PW_PLACEHOLDER
  2608.  
  2609.  
  2610.  
  2611. # Password of the nagiosadmin user on the Nagios server.
  2612.  
  2613. CONFIG_NAGIOS_PW=d346f2fb71ef489a

其中,需要根据自己的情况修改的部分包括:

1. IP地址:

我的主机地址为: 10.0.2.15. 全部替换为你的主机IP.

2. 镜像地址:

  1. CONFIG_PROVISION_IMAGE_URL=http://192.168.117.129/centos/help/files/cirros-0.3.4-x86_64-disk.img
  2. CONFIG_MANILA_SERVICE_IMAGE_LOCATION=http://192.168.117.129/centos/help/files/manila-service-image.qcow2

需要改成你的镜像存放地址.

应该就这两个地方. 其余部分可以根据自己的需求来定制.

猜你在找的CentOS相关文章