Guest User

Untitled

a guest
Jan 8th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. ---
  2. # Copyright 2014, Rackspace US, Inc.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15.  
  16. ###
  17. ### This file contains commonly used overrides for convenience. Please inspect
  18. ### the defaults for each role to find additional override options.
  19. ###
  20.  
  21. ## Debug and Verbose options.
  22. debug: false
  23.  
  24. ## Installation method for OpenStack services
  25. # Default option (source) is to install the OpenStack services using PIP
  26. # packages. An alternative method (distro) is to use the distribution cloud
  27. # repositories to install OpenStack using distribution packages
  28. install_method: source
  29.  
  30. #
  31. # Neutron Configuration
  32. neutron_dnsmasq_force_metadata: True
  33. # Ensure the openvswitch kernel module is loaded
  34. openstack_host_specific_kernel_modules:
  35. - name: "openvswitch"
  36. pattern: "CONFIG_OPENVSWITCH"
  37. group: "network_hosts"
  38.  
  39. ### neutron specific config
  40. neutron_plugin_type: ml2.ovs
  41. neutron_ml2_drivers_type: "vlan,local"
  42.  
  43. neutron_plugin_base:
  44. - router
  45. - metering
  46. - flow_classifier
  47. - sfc
  48.  
  49. neutron_ml2_conf_ini_overrides:
  50. securitygroup:
  51. firewall_driver: openvswitch
  52. neutron_openvswitch_agent_ini_overrides:
  53. securitygroup:
  54. firewall_driver: openvswitch
  55.  
  56. neutron_provider_networks:
  57. network_flat_networks: "*"
  58. network_types: "vlan"
  59. network_vlan_ranges: "vlan:110:140"
  60. network_mappings: "vlan:br-vlan"
  61.  
  62. neutron_vxlan_enabled: false
  63.  
  64. ###
  65. ### Metadata Agent Plugin Configuration
  66. ###
  67.  
  68. # If ``neutron_metadata_workers`` is unset the system will use half the number of available VCPUs to
  69. # compute the number of api workers to use with a default capping value of 16.
  70. # neutron_metadata_workers: 16
  71. neutron_metadata_backlog: 4096
  72.  
  73. # The protocol used by neutron to access the nova metadata service.
  74. nova_metadata_protocol: http
  75.  
  76. # If the nova_metadata_protocol is using a self-signed cert, then
  77. # this flag should be set to a boolean True.
  78. nova_metadata_insecure: True
  79.  
  80. ## OpenStack public endpoint protocol
  81. openstack_service_publicuri_proto: http
  82.  
  83. ## Nova conf Overrides
  84. nova_ceilometer_enabled: True
  85. nova_nova_conf_overrides:
  86. DEFAULT:
  87. compute_monitors: cpu.virt_driver
  88. force_config_drive: true
  89. resume_guests_state_on_host_boot: true
  90.  
  91.  
  92. ## Ceilometer user variables
  93. ceilometer_sample_interval: 10
  94. ceilometer_gnocchi_enabled: True
  95.  
  96. ceilometer_ceilometer_conf_overrides:
  97. dispatcher_gnocchi:
  98. archive_policy: ceilometer-low-rate
  99. url: http://172.112.10.1:8041
  100.  
  101. ceilometer_pipeline_yaml_overrides:
  102. sources:
  103. - name: meter_source
  104. meters:
  105. - "*"
  106. sinks:
  107. - meter_sink
  108. sinks:
  109. - name: meter_sink
  110. transformers:
  111. publishers:
  112. - gnocchi://?archive_policy=ceilometer-low-rate
Add Comment
Please, Sign In to add comment