Guest User

undercloud.conf

a guest
Jan 23rd, 2018
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.72 KB | None | 0 0
  1. [DEFAULT]
  2.  
  3. #
  4. # From instack-undercloud
  5. #
  6.  
  7. # Local file path to the necessary images. The path should be a
  8. # directory readable by the current user that contains the full set of
  9. # images. (string value)
  10. #image_path = .
  11.  
  12. # Fully qualified hostname (including domain) to set on the
  13. # Undercloud. If left unset, the current hostname will be used, but
  14. # the user is responsible for configuring all system hostname settings
  15. # appropriately. If set, the undercloud install will configure all
  16. # system hostname settings. (string value)
  17. undercloud_hostname = vm-director-cerner.intel.com
  18.  
  19. # IP information for the interface on the Undercloud that will be
  20. # handling the PXE boots and DHCP for Overcloud instances. The IP
  21. # portion of the value will be assigned to the network interface
  22. # defined by local_interface, with the netmask defined by the prefix
  23. # portion of the value. (string value)
  24. local_ip = 10.66.243.2/27
  25.  
  26. # Network gateway for the Neutron-managed network for Overcloud
  27. # instances. This should match the local_ip above when using
  28. # masquerading. (string value)
  29. network_gateway = 10.66.243.2
  30.  
  31. # Virtual IP address to use for the public endpoints of Undercloud
  32. # services. Only used with SSL. (string value)
  33. undercloud_public_vip = 10.66.243.3
  34.  
  35. # Virtual IP address to use for the admin endpoints of Undercloud
  36. # services. Only used with SSL. (string value)
  37. undercloud_admin_vip = 10.66.243.4
  38.  
  39. # Certificate file to use for OpenStack service SSL connections.
  40. # Setting this enables SSL for the OpenStack API endpoints, leaving it
  41. # unset disables SSL. (string value)
  42. #undercloud_service_certificate =
  43.  
  44. # When set to True, an SSL certificate will be generated as part of
  45. # the undercloud install and this certificate will be used in place of
  46. # the value for undercloud_service_certificate. The resulting
  47. # certificate will be written to
  48. # /etc/pki/tls/certs/undercloud-[undercloud_public_vip].pem. This
  49. # certificate is signed by CA selected by the
  50. # "certificate_generation_ca" option. (boolean value)
  51. generate_service_certificate = true
  52.  
  53. # The certmonger nickname of the CA from which the certificate will be
  54. # requested. This is used only if the generate_service_certificate
  55. # option is set. Note that if the "local" CA is selected the
  56. # certmonger's local CA certificate will be extracted to /etc/pki/ca-
  57. # trust/source/anchors/cm-local-ca.pem and subsequently added to the
  58. # trust chain. (string value)
  59. certificate_generation_ca = local
  60.  
  61. # The kerberos principal for the service that will use the
  62. # certificate. This is only needed if your CA requires a kerberos
  63. # principal. e.g. with FreeIPA. (string value)
  64. #service_principal =
  65.  
  66. # Network interface on the Undercloud that will be handling the PXE
  67. # boots and DHCP for Overcloud instances. (string value)
  68. local_interface = eth1
  69.  
  70. # MTU to use for the local_interface. (integer value)
  71. #local_mtu = 1500
  72.  
  73. # Network CIDR for the Neutron-managed network for Overcloud
  74. # instances. This should be the subnet used for PXE booting. The
  75. # current default for this value is 192.0.2.0/24, but this is
  76. # deprecated due to it being a non-routable CIDR under RFC 5737. The
  77. # default value for this option will be changed in the Ocata release.
  78. # A different, valid CIDR should be selected to avoid problems. If an
  79. # overcloud has already been deployed with the 192.0.2.0/24 CIDR and
  80. # therefore the CIDR cannot be changed, you must set this option to
  81. # 192.0.2.0/24 explicitly to avoid it changing in future releases, and
  82. # all other network options related to the CIDR (e.g. local_ip) must
  83. # also be set to maintain a valid configuration. (string value)
  84. network_cidr = 10.66.243.0/27
  85.  
  86. # Network that will be masqueraded for external access, if required.
  87. # This should be the subnet used for PXE booting. (string value)
  88. masquerade_network = 10.66.243.0/27
  89.  
  90. # Start of DHCP allocation range for PXE and DHCP of Overcloud
  91. # instances. (string value)
  92. dhcp_start = 10.66.243.5
  93.  
  94. # End of DHCP allocation range for PXE and DHCP of Overcloud
  95. # instances. (string value)
  96. dhcp_end = 10.66.243.10
  97.  
  98. # Path to hieradata override file. If set, the file will be copied
  99. # under /etc/puppet/hieradata and set as the first file in the hiera
  100. # hierarchy. This can be used to to custom configure services beyond
  101. # what undercloud.conf provides (string value)
  102. #hieradata_override =
  103.  
  104. # Path to network config override template. If set, this template will
  105. # be used to configure the networking via os-net-config. Must be in
  106. # json format. Templated tags can be used within the template, see
  107. # instack-undercloud/elements/undercloud-stack-config/net-
  108. # config.json.template for example tags (string value)
  109. #net_config_override =
  110.  
  111. # Network interface on which inspection dnsmasq will listen. If in
  112. # doubt, use the default value. (string value)
  113. # Deprecated group/name - [DEFAULT]/discovery_interface
  114. inspection_interface = br-ctlplane
  115.  
  116. # Temporary IP range that will be given to nodes during the inspection
  117. # process. Should not overlap with the range defined by dhcp_start
  118. # and dhcp_end, but should be in the same network. (string value)
  119. # Deprecated group/name - [DEFAULT]/discovery_iprange
  120. inspection_iprange = 10.66.243.11,10.66.243.16
  121.  
  122. # Whether to enable extra hardware collection during the inspection
  123. # process. Requires python-hardware or python-hardware-detect package
  124. # on the introspection image. (boolean value)
  125. #inspection_extras = true
  126.  
  127. # Whether to run benchmarks when inspecting nodes. Requires
  128. # inspection_extras set to True. (boolean value)
  129. # Deprecated group/name - [DEFAULT]/discovery_runbench
  130. #inspection_runbench = false
  131.  
  132. # Whether to support introspection of nodes that have UEFI-only
  133. # firmware. (boolean value)
  134. #inspection_enable_uefi = true
  135.  
  136. # Whether to enable the debug log level for Undercloud OpenStack
  137. # services. (boolean value)
  138. undercloud_debug = true
  139.  
  140. # Whether to install Tempest in the Undercloud. (boolean value)
  141. #enable_tempest = true
  142.  
  143. # Whether to install Mistral services in the Undercloud. (boolean
  144. # value)
  145. enable_mistral = true
  146.  
  147. # Whether to install Zaqar services in the Undercloud. (boolean value)
  148. enable_zaqar = true
  149.  
  150. # Whether to install Telemetry services (ceilometer, aodh) in the
  151. # Undercloud. (boolean value)
  152. #enable_telemetry = true
  153.  
  154. # Whether to install the TripleO UI. (boolean value)
  155. enable_ui = true
  156.  
  157. # Whether to install requirements to run the TripleO validations.
  158. # (boolean value)
  159. #enable_validations = true
  160.  
  161. # Whether to use iPXE for deploy and inspection. (boolean value)
  162. # Deprecated group/name - [DEFAULT]/ipxe_deploy
  163. #ipxe_enabled = true
  164.  
  165.  
  166. # Whether to store events in the Undercloud Ceilometer. (boolean
  167. # value)
  168. #store_events = false
  169.  
  170. # Maximum number of attempts the scheduler will make when deploying
  171. # the instance. You should keep it greater or equal to the number of
  172. # bare metal nodes you expect to deploy at once to work around
  173. # potential race condition when scheduling. (integer value)
  174. # Minimum value: 1
  175. #scheduler_max_attempts = 30
  176.  
  177. # Whether to clean overcloud nodes (wipe the hard drive) between
  178. # deployments and after the introspection. (boolean value)
  179. #clean_nodes = false
  180.  
  181.  
  182. [auth]
  183.  
  184. #
  185. # From instack-undercloud
  186. #
  187.  
  188. # Password used for MySQL databases. If left unset, one will be
  189. # automatically generated. (string value)
  190. #undercloud_db_password = <None>
  191.  
  192. # Keystone admin token. If left unset, one will be automatically
  193. # generated. (string value)
  194. #undercloud_admin_token = <None>
  195.  
  196. # Keystone admin password. If left unset, one will be automatically
  197. # generated. (string value)
  198. #undercloud_admin_password = <None>
  199.  
  200. # Glance service password. If left unset, one will be automatically
  201. # generated. (string value)
  202. #undercloud_glance_password = <None>
  203.  
  204. # Heat db encryption key(must be 16, 24, or 32 characters. If left
  205. # unset, one will be automatically generated. (string value)
  206. #undercloud_heat_encryption_key = <None>
  207.  
  208. # Heat service password. If left unset, one will be automatically
  209. # generated. (string value)
  210. #undercloud_heat_password = <None>
  211.  
  212. # Neutron service password. If left unset, one will be automatically
  213. # generated. (string value)
  214. #undercloud_neutron_password = <None>
  215.  
  216. # Nova service password. If left unset, one will be automatically
  217. # generated. (string value)
  218. #undercloud_nova_password = <None>
  219.  
  220. # Ironic service password. If left unset, one will be automatically
  221. # generated. (string value)
  222. #undercloud_ironic_password = <None>
  223.  
  224. # Aodh service password. If left unset, one will be automatically
  225. # generated. (string value)
  226. #undercloud_aodh_password = <None>
  227.  
  228. # Ceilometer service password. If left unset, one will be
  229. # automatically generated. (string value)
  230. #undercloud_ceilometer_password = <None>
  231.  
  232. # Ceilometer metering secret. If left unset, one will be automatically
  233. # generated. (string value)
  234. #undercloud_ceilometer_metering_secret = <None>
  235.  
  236. # Ceilometer snmpd read-only user. If this value is changed from the
  237. # default, the new value must be passed in the overcloud environment
  238. # as the parameter SnmpdReadonlyUserName. This value must be between 1
  239. # and 32 characters long. (string value)
  240. #undercloud_ceilometer_snmpd_user = ro_snmp_user
  241.  
  242. # Ceilometer snmpd password. If left unset, one will be automatically
  243. # generated. (string value)
  244. #undercloud_ceilometer_snmpd_password = <None>
  245.  
  246. # Swift service password. If left unset, one will be automatically
  247. # generated. (string value)
  248. #undercloud_swift_password = <None>
  249.  
  250. # Mistral service password. If left unset, one will be automatically
  251. # generated. (string value)
  252. #undercloud_mistral_password = <None>
  253.  
  254. # Rabbitmq cookie. If left unset, one will be automatically generated.
  255. # (string value)
  256. #undercloud_rabbit_cookie = <None>
  257.  
  258. # Rabbitmq password. If left unset, one will be automatically
  259. # generated. (string value)
  260. #undercloud_rabbit_password = <None>
  261.  
  262. # Rabbitmq username. If left unset, one will be automatically
  263. # generated. (string value)
  264. #undercloud_rabbit_username = <None>
  265.  
  266. # Heat stack domain admin password. If left unset, one will be
  267. # automatically generated. (string value)
  268. #undercloud_heat_stack_domain_admin_password = <None>
  269.  
  270. # Swift hash suffix. If left unset, one will be automatically
  271. # generated. (string value)
  272. #undercloud_swift_hash_suffix = <None>
  273.  
  274. # Sensu service password. If left unset, one will be automatically
  275. # generated. (string value)
  276. #undercloud_sensu_password = <None>
  277.  
  278. # HAProxy stats password. If left unset, one will be automatically
  279. # generated. (string value)
  280. #undercloud_haproxy_stats_password = <None>
  281.  
  282. # Zaqar password. If left unset, one will be automatically generated.
  283. # (string value)
  284. #undercloud_zaqar_password = <None>
  285.  
  286. # Horizon secret key. If left unset, one will be automatically
  287. # generated. (string value)
  288. #undercloud_horizon_secret_key = <None>
Add Comment
Please, Sign In to add comment