Merge pull request #1212 from ceph/cluster-name-info

common: document "cluster" variable usage
pull/1217/head
Sébastien Han 2017-01-03 10:18:41 +01:00 committed by GitHub
commit 676d8812f9
2 changed files with 22 additions and 2 deletions

View File

@ -14,7 +14,17 @@ dummy:
###########
#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 #

View File

@ -6,7 +6,17 @@
###########
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 #