mirror of https://github.com/ceph/ceph-ansible.git
Merge pull request #1212 from ceph/cluster-name-info
common: document "cluster" variable usagepull/1217/head
commit
676d8812f9
|
@ -14,7 +14,17 @@ dummy:
|
||||||
###########
|
###########
|
||||||
|
|
||||||
#fetch_directory: fetch/
|
#fetch_directory: fetch/
|
||||||
#cluster: ceph # cluster name
|
|
||||||
|
# The 'cluster' variable determines the name of the cluster.
|
||||||
|
# Changing the default value to something else means that you will
|
||||||
|
# need to change all the command line calls as well, for example if
|
||||||
|
# your cluster name is 'foo':
|
||||||
|
# "ceph health" will become "ceph --cluster foo health"
|
||||||
|
#
|
||||||
|
# An easier way to handle this is to use the environment variable CEPH_ARGS
|
||||||
|
# So run: "export CEPH_ARGS="--cluster foo"
|
||||||
|
# With that you will be able to run "ceph health" normally
|
||||||
|
#cluster: ceph
|
||||||
|
|
||||||
###########
|
###########
|
||||||
# INSTALL #
|
# INSTALL #
|
||||||
|
|
|
@ -6,7 +6,17 @@
|
||||||
###########
|
###########
|
||||||
|
|
||||||
fetch_directory: fetch/
|
fetch_directory: fetch/
|
||||||
cluster: ceph # cluster name
|
|
||||||
|
# The 'cluster' variable determines the name of the cluster.
|
||||||
|
# Changing the default value to something else means that you will
|
||||||
|
# need to change all the command line calls as well, for example if
|
||||||
|
# your cluster name is 'foo':
|
||||||
|
# "ceph health" will become "ceph --cluster foo health"
|
||||||
|
#
|
||||||
|
# An easier way to handle this is to use the environment variable CEPH_ARGS
|
||||||
|
# So run: "export CEPH_ARGS="--cluster foo"
|
||||||
|
# With that you will be able to run "ceph health" normally
|
||||||
|
cluster: ceph
|
||||||
|
|
||||||
###########
|
###########
|
||||||
# INSTALL #
|
# INSTALL #
|
||||||
|
|
Loading…
Reference in New Issue