Advertisement
Guest User

Untitled

a guest
Apr 1st, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. ---
  2. ## Load Balancer Configuration (haproxy/keepalived)
  3. ## ------------------------------------------------
  4. haproxy_keepalived_external_vip_cidr: "192.168.8.210/24"
  5. haproxy_keepalived_internal_vip_cidr: "10.250.0.210/22"
  6. haproxy_keepalived_external_interface: bond0.525
  7. haproxy_keepalived_internal_interface: br-mgmt
  8. keepalived_use_latest_stable: True
  9.  
  10. # General Ceph Config
  11. # -------------------
  12. ceph_stable_release: luminous
  13. ceph_pkg_source: ceph
  14. cephx: true
  15.  
  16. ceph_mons:
  17. - 192.168.7.66
  18. - 192.168.7.67
  19. - 192.168.7.68
  20. - 192.168.7.69
  21.  
  22. # Galera
  23. galera_cluster_name: openstack_galera_cluster
  24.  
  25. # Glance
  26. glance_default_store: rbd
  27. glance_ceph_client: glance
  28. glance_rbd_store_pool: images
  29. glance_rbd_store_chunk_size: 8
  30.  
  31. # Nova
  32. nova_designate_enabled: true
  33. nova_libvirt_images_rbd_pool: vms
  34. nova_ceph_client: nova
  35.  
  36. # change this to your hypervisor type: IE "qemu", "lxc".
  37. # DO NOT un-comment this and run any nova plays unless you want all hosts to become the value set below.
  38. # Run ansible play and target a single compute node with the below line un-commented.
  39. # nova_virt_type: lxc
  40.  
  41. # Neutron
  42. neutron_designate_enabled: true
  43.  
  44. # Gnocchi
  45. gnocchi_default_store: rbd
  46.  
  47. # Rabbitmq
  48. rabbitmq_use_ssl: true
  49.  
  50. # Cinder
  51. cinder_ceph_client: cinder
  52. cinder_service_backup_driver: cinder.backup.drivers.ceph
  53. cinder_service_backup_ceph_user: cinder-backup
  54. cinder_service_backup_ceph_pool: backups
  55.  
  56. # Fix for queens upgrade (workaround)
  57. galera_monitoring_allowed_source: "10.250.0.0/22"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement