mirror of https://github.com/ceph/ceph-ansible.git
Change default options
We want to force the user to only enable the options they need. Thus they shouldn't have to enable one option and then disable another. Signed-off-by: leseb <seb@redhat.com>pull/313/head
parent
17dd29a556
commit
50d1f73afe
|
@ -32,6 +32,8 @@ ansible_provision = proc do |ansible|
|
|||
|
||||
# In a production deployment, these should be secret
|
||||
ansible.extra_vars = {
|
||||
ceph_stable: 'true',
|
||||
journal_collocation: 'true',
|
||||
fsid: '4a158d27-f750-41d5-9e7f-26ce4c9d2d45',
|
||||
monitor_secret: 'AQAWqilTCDh7CBAAawXt6kyTgLFCxSvJhTEmuw==',
|
||||
journal_size: 100,
|
||||
|
|
|
@ -20,7 +20,7 @@ dummy:
|
|||
########
|
||||
|
||||
# COMMUNITY VERSION
|
||||
#ceph_stable: true # use ceph stable branch
|
||||
#ceph_stable: false # use ceph stable branch
|
||||
#ceph_stable_key: https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc
|
||||
#ceph_stable_release: hammer # ceph stable release
|
||||
|
||||
|
@ -57,7 +57,7 @@ dummy:
|
|||
# on RHEL 7.
|
||||
#
|
||||
#ceph_stable_rh_storage: false
|
||||
#ceph_stable_rh_storage_cdn_install: true # assumes all the nodes can connect to cdn.redhat.com
|
||||
#ceph_stable_rh_storage_cdn_install: false # assumes all the nodes can connect to cdn.redhat.com
|
||||
#ceph_stable_rh_storage_iso_install: false # usually used when nodes don't have access to cdn.redhat.com
|
||||
#ceph_stable_rh_storage_iso_path:
|
||||
#ceph_stable_rh_storage_mount_path: /tmp/rh-storage-mount
|
||||
|
|
|
@ -69,7 +69,7 @@ osd_crush_location: "'root={{ ceph_crush_root }} rack={{ ceph_crush_rack }} host
|
|||
# This will collocate both journal and data on the same disk
|
||||
# creating a partition at the beginning of the device
|
||||
|
||||
#journal_collocation: true
|
||||
#journal_collocation: false
|
||||
|
||||
|
||||
# II. Second scenario: single journal device for N OSDs
|
||||
|
|
|
@ -17,7 +17,7 @@ restapi_group_name: restapis
|
|||
########
|
||||
|
||||
# COMMUNITY VERSION
|
||||
ceph_stable: true # use ceph stable branch
|
||||
ceph_stable: false # use ceph stable branch
|
||||
ceph_stable_key: https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc
|
||||
ceph_stable_release: hammer # ceph stable release
|
||||
|
||||
|
@ -54,7 +54,7 @@ ceph_stable_ice: false # use Inktank Ceph Enterprise
|
|||
# on RHEL 7.
|
||||
#
|
||||
ceph_stable_rh_storage: false
|
||||
ceph_stable_rh_storage_cdn_install: true # assumes all the nodes can connect to cdn.redhat.com
|
||||
ceph_stable_rh_storage_cdn_install: false # assumes all the nodes can connect to cdn.redhat.com
|
||||
ceph_stable_rh_storage_iso_install: false # usually used when nodes don't have access to cdn.redhat.com
|
||||
#ceph_stable_rh_storage_iso_path:
|
||||
ceph_stable_rh_storage_mount_path: /tmp/rh-storage-mount
|
||||
|
|
|
@ -66,7 +66,7 @@ osd_auto_discovery: false
|
|||
# This will collocate both journal and data on the same disk
|
||||
# creating a partition at the beginning of the device
|
||||
|
||||
journal_collocation: true
|
||||
journal_collocation: false
|
||||
|
||||
|
||||
# II. Second scenario: single journal device for N OSDs
|
||||
|
|
Loading…
Reference in New Issue