Advertisement
Guest User

Untitled

a guest
Oct 30th, 2017
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. kolla_base_distro: "ubuntu"
  2.  
  3. # Valid options are [ binary, source ]
  4. kolla_install_type: "source"
  5. # Valid option is Docker repository tag
  6. openstack_release: 4.0.0 #"auto"
  7.  
  8. # Location of configuration overrides
  9. #node_custom_config: "/etc/kolla/config"
  10.  
  11. # This should be a VIP, an unused IP on your network that will float between
  12. # the hosts running keepalived for high-availability. When running an All-In-One
  13. # without haproxy and keepalived, this should be the first IP on your
  14. # 'network_interface' as set in the Networking section below.
  15. kolla_internal_vip_address: "44.128.25.30" #"10.10.10.254"
  16.  
  17. # This is the DNS name that maps to the kolla_internal_vip_address VIP. By
  18. # default it is the same as kolla_internal_vip_address.
  19. #kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"
  20.  
  21. # This should be a VIP, an unused IP on your network that will float between
  22. # the hosts running keepalived for high-availability. It defaults to the
  23. # kolla_internal_vip_address, allowing internal and external communication to
  24. # share the same address. Specify a kolla_external_vip_address to separate
  25. # internal and external requests between two VIPs.
  26. kolla_external_vip_address: "{{ kolla_internal_vip_address }}"
  27.  
  28.  
  29. network_interface: "ens160"
  30. neutron_external_interface: "ens33"
  31.  
  32. # These can be adjusted for even more customization. The default is the same as
  33. # the 'network_interface'. These interfaces must contain an IPv4 address.
  34. #kolla_external_vip_interface: "{{ network_interface }}"
  35. api_interface: "{{ network_interface }}"
  36.  
  37. openstack_logging_debug: "False"
  38.  
  39. # Valid options are [ novnc, spice ]
  40. #nova_console: "novnc"
  41.  
  42. # OpenStack services can be enabled or disabled with these options
  43. enable_aodh: "yes"
  44. #enable_barbican: "no"
  45. enable_ceilometer: "yes"
  46. #enable_central_logging: "no"
  47. enable_ceph: "yes"
  48. #enable_ceph_rgw: "no"
  49. #enable_chrony: "no"
  50. enable_cinder: "yes"
  51. #enable_cinder_backend_hnas_iscsi: "no"
  52. #enable_cinder_backend_hnas_nfs: "no"
  53. #enable_cinder_backend_iscsi: "no"
  54. #enable_cinder_backend_lvm: "no"
  55. #enable_cinder_backend_nfs: "no"
  56. #enable_cloudkitty: "no"
  57. #enable_collectd: "no"
  58. #enable_congress: "no"
  59. #enable_designate: "no"
  60. #enable_destroy_images: "no"
  61. enable_etcd: "yes"
  62. enable_zun: "yes"
  63. #enable_freezer: "no"
  64. #enable_gnocchi: "no"
  65. #enable_grafana: "no"
  66. #enable_heat: "yes"
  67. #enable_horizon: "yes"
  68. #enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"
  69. #enable_horizon_freezer: "{{ enable_freezer | bool }}"
  70. #enable_horizon_ironic: "{{ enable_ironic | bool }}"
  71. #enable_horizon_karbor: "{{ enable_karbor | bool }}"
  72. #enable_horizon_magnum: "{{ enable_magnum | bool }}"
  73. #enable_horizon_manila: "{{ enable_manila | bool }}"
  74. #enable_horizon_mistral: "{{ enable_mistral | bool }}"
  75. #enable_horizon_murano: "{{ enable_murano | bool }}"
  76. enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}"
  77. #enable_horizon_sahara: "{{ enable_sahara | bool }}"
  78. #enable_horizon_searchlight: "{{ enable_searchlight | bool }}"
  79. enable_horizon_senlin: "{{ enable_senlin | bool }}"
  80. #enable_ironic: "no"
  81. #enable_karbor: "no"
  82. enable_kuryr: "yes"
  83. #enable_magnum: "no"
  84. #enable_manila: "no"
  85. #enable_manila_backend_generic: "no"
  86. #enable_manila_backend_hnas: "no"
  87. #enable_mistral: "no"
  88. enable_mongodb: "yes"
  89. #enable_murano: "no"
  90. #enable_multipathd: "no"
  91. #enable_neutron_dvr: "no"
  92. enable_neutron_lbaas: "no"
  93. #enable_neutron_fwaas: "no"
  94. enable_neutron_qos: "no"
  95. #enable_neutron_agent_ha: "no"
  96. #enable_neutron_vpnaas: "no"
  97. #enable_nova_serialconsole_proxy: "no"
  98. #enable_octavia: "no"
  99. #enable_panko: "no"
  100. #enable_rally: "no"
  101. #enable_sahara: "no"
  102. #enable_searchlight: "no"
  103. enable_senlin: "no"
  104. #enable_solum: "no"
  105. #enable_swift: "no"
  106. #enable_telegraf: "no"
  107. #enable_tacker: "no"
  108. #enable_tempest: "no"
  109. #enable_trove: "no"
  110. glance_backend_file: "yes"
  111. designate_backend: "bind9"
  112. designate_ns_record: "sample.openstack.org"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement