Advertisement
Guest User

mkrish004c_user_variable.yml

a guest
May 11th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 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. debug: True
  21. aodh_db_type: mongodb
  22. aodh_db_ip: 192.10.10.2
  23. aodh_db_port: 27017
  24. ## Ceilometer Options
  25. ceilometer_db_type: mongodb
  26. ceilometer_db_ip: 192.10.10.2
  27. ceilometer_db_port: 27017
  28. cinder_ceilometer_enabled: True
  29. glance_ceilometer_enabled: True
  30. heat_ceilometer_enabled: True
  31. neutron_ceilometer_enabled: True
  32. nova_ceilometer_enabled: True
  33. swift_ceilometer_enabled: True
  34. keystone_ceilometer_enabled: True
  35.  
  36. coordination:
  37. backend_url: "memcached://192.10.10.100:11211"
  38. notification:
  39. workload_partitioning: True
  40.  
  41. ## Common Glance Overrides
  42. # Set glance_default_store to "swift" if using Cloud Files or swift backend
  43. # or "rbd" if using ceph backend; the latter will trigger ceph to get
  44. # installed on glance. If using a file store, a shared file store is
  45. # recommended. See the OpenStack-Ansible install guide and the OpenStack
  46. # documentation for more details.
  47. # glance_default_store: file
  48. #glance_default_store: rbd
  49. glance_default_store: rbd
  50.  
  51. rabbitmq_use_ssl: false
  52.  
  53. ssh_delay: 3
  54.  
  55.  
  56. ## HAProxy
  57. # Uncomment this to disable keepalived installation (cf. documentation)
  58. haproxy_use_keepalived: True
  59. #
  60. # HAProxy Keepalived configuration (cf. documentation)
  61. # Make sure that this is set correctly according to the CIDR used for your
  62. # internal and external addresses.
  63. haproxy_keepalived_external_vip_cidr: "172.20.20.54"
  64. haproxy_keepalived_internal_vip_cidr: "192.10.10.100"
  65. haproxy_keepalived_external_interface: eth2
  66. haproxy_keepalived_internal_interface: br-mgmt
  67.  
  68. haproxy_keepalived_vars_file: 'vars/configs/keepalived_haproxy.yml'
  69.  
  70. ## Ceph pool name for Glance to use
  71. #glance_rbd_store_pool: images
  72. #glance_rbd_store_chunk_size: 8
  73.  
  74. ## Common Nova Overrides
  75. # When nova_libvirt_images_rbd_pool is defined, ceph will be installed on nova
  76. # hosts.
  77. nova_libvirt_images_rbd_pool: vms
  78.  
  79. ## Common Ceph Overrides
  80. ceph_mons:
  81. - 192.10.10.2
  82.  
  83. ceph_conf_file: |
  84. [global]
  85. fsid = 259a1483-baf6-46c7-bad4-797943cf584d
  86. mon_initial_members = oscomp-as-b183
  87. mon_host = 192.10.10.2
  88. auth_cluster_required = cephx
  89. auth_service_required = cephx
  90. auth_client_required = cephx
  91. osd_pool_default_size = 2
  92.  
  93. apply_security_hardening: False
  94.  
  95. initial_monitor_node: oscomp-as-b183
  96. ceph_nodes:
  97. - oscomp-as-b185
  98.  
  99. admin_node:
  100. - oscomp-as-b183
  101.  
  102. node_osd_mounts:
  103. - oscomp-as-b185:/dev/sdb1
  104.  
  105.  
  106. mongodb_packages:
  107. - mongodb-server
  108. - mongodb-clients
  109. - python-pymongo
  110.  
  111. mongodb_node: oscomp-as-b183
  112.  
  113. cinder_storage_availability_zone: nova
  114. cinder_default_availability_zone: nova
  115. cinder_ceph_client: cinder
  116. cephx: true
  117. ceph_stable_release: hammer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement