summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wilkins <john.wilkins@inktank.com>2013-04-26 14:03:44 -0700
committerJohn Wilkins <john.wilkins@inktank.com>2013-04-26 14:03:44 -0700
commitb631cc67131bde6586f0b9233dc7c6b6c1e82b68 (patch)
tree623238bfd4720d928c98b1aa2b71e9b7189005d7
parentd85c6904dbb876dc0582540285478682f3c536ac (diff)
downloadceph-b631cc67131bde6586f0b9233dc7c6b6c1e82b68.tar.gz
doc: Added ceph-deploy package management (install | uninstall ) section.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
-rw-r--r--doc/rados/deployment/ceph-deploy-install.rst47
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/rados/deployment/ceph-deploy-install.rst b/doc/rados/deployment/ceph-deploy-install.rst
new file mode 100644
index 00000000000..abb79bd93ac
--- /dev/null
+++ b/doc/rados/deployment/ceph-deploy-install.rst
@@ -0,0 +1,47 @@
+====================
+ Package Management
+====================
+
+Install
+=======
+
+To install Ceph packages on your cluster hosts, open a command line on your
+client machine and type the following::
+
+ ceph-deploy install {hostname [hostname] ...}
+
+Without additional arguments, ``ceph-deploy`` will install the most recent
+stable Ceph package to the cluster host(s). To specify a particular package,
+you may select from the following:
+
+- ``--stable <code-name>``
+- ``--testing``
+- ``--dev <branch-or-tag>``
+
+For example::
+
+ ceph-deploy install --stable <code-name> <hostname1 [hostname2] ...>
+ ceph-deploy install --stable bobtail hostname{1,2,3,4,5}
+ ceph-deploy install --testing hostname1
+ ceph-deploy install --dev wip-some-branch hostname{1,2,3,4,5}
+
+For additional details, see `Installing Debian/Ubuntu Packages`_.
+For additional usage, execute::
+
+ ceph-deploy install -h
+
+
+Uninstall
+=========
+
+To uninstall Ceph packages from your cluster hosts, open a commandline on
+your admin host and type the following::
+
+ ceph-deploy uninstall {hostname [hostname] ...}
+
+The tool will unininstall ``ceph`` packages from the specified hosts. Other
+commands may also invoke ``ceph-deploy uninstall``, such as ``purge``.
+
+.. _Installing Debian/Ubuntu Packages: ../../../install/debian
+
+