Advertisement
arkanmgerges

Untitled

Jun 11th, 2020
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.52 KB | None | 0 0
  1. ---
  2.     # Because we have three haproxy nodes, we need
  3.     # to one active LB IP, and we use keepalived for that.
  4.     ## Load Balancer Configuration (haproxy/keepalived)
  5.     haproxy_keepalived_external_vip_cidr: "192.168.50.211/24"
  6.     haproxy_keepalived_internal_vip_cidr: "172.29.236.211/22"
  7.     haproxy_keepalived_external_interface: br-ext
  8.     haproxy_keepalived_internal_interface: br-mgmt
  9.    
  10.    
  11.     # Horizon
  12.     horizon_images_upload_mode: remote
  13.     horizon_keystone_multidomain_support: True
  14.    
  15.     # Compute
  16.     nova_libvirt_images_rbd_pool: ephemeral-vms
  17.     nova_virt_type: kvm
  18.    
  19.    
  20.     ## Ceph cluster fsid (must be generated before first run)
  21.     ## Generate a uuid using: python -c 'import uuid; print(str(uuid.uuid4()))'
  22.     generate_fsid: false
  23.     # fsid: 0d4e0fe8-fe15-42a9-808f-a93071c0819a # Replace with your generated UUID
  24.    
  25.     ## ceph-ansible settings
  26.     ## See https://github.com/ceph/ceph-ansible/tree/master/group_vars for
  27.     ## additional configuration options available.
  28.     monitor_address_block: "{{ cidr_networks.container }}"
  29.     public_network: "{{ cidr_networks.container }}"
  30.     cluster_network: "{{ cidr_networks.storage }}"
  31.     journal_size: 10240 # size in MB
  32.     glance_default_store: rbd
  33.     glance_notification_driver: noop
  34.     glance_ceph_client: glance
  35.     glance_rbd_store_pool: glance-images
  36.     glance_rbd_store_chunk_size: 8
  37.     nova_libvirt_images_rbd_pool: ephemeral-vms
  38.     cinder_ceph_client: cinder
  39.     cephx: true
  40.     ceph_mons:
  41.      - 192.168.50.10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement