]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
doc: cookbook name change broke some things in doc. Fixed.
authorJohn Wilkins <john.wilkins@inktank.com>
Thu, 12 Jul 2012 15:47:47 +0000 (08:47 -0700)
committerJohn Wilkins <john.wilkins@inktank.com>
Thu, 12 Jul 2012 15:47:47 +0000 (08:47 -0700)
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
doc/config-cluster/chef.rst

index b6490df4d982dd863b9df2cc7b3f3e5bbfb59800..bf2bea8773cbe27f0197b0a8accb509650230b83 100644 (file)
@@ -146,14 +146,14 @@ The node configuration should appear in your text editor. Change the
 ``chef_environment`` value to ``Ceph`` (or whatever name you set for your
 Ceph environment). 
 
-In the ``run_list``, add ``"recipe[ceph::apt]",`` to all nodes as the first
-setting, so that Chef can install or update the necessary packages. Then, 
-add at least one of:: 
+In the ``run_list``, add ``"recipe[ceph-cookbooks::apt]",`` to all nodes as 
+the first setting, so that Chef can install or update the necessary packages. 
+Then, add at least one of:: 
 
-       "role[ceph-mon]"
-       "role[ceph-osd]"
-       "role[ceph-mds]"
-       "role[ceph-radosgw]"
+       "role[ceph-cookbooks-mon]"
+       "role[ceph-cookbooks-osd]"
+       "role[ceph-cookbooks-mds]"
+       "role[ceph-cookbooks-radosgw]"
 
 If you add more than one role, separate them with a comma. The following
 example adds a node named `mon-host` to the `Ceph` environment and 
@@ -161,16 +161,16 @@ runs the ``apt`` recipe followed by the roles ``ceph-mon`` and ``ceph-osd``::
 
        {
                "chef_environment": "Ceph",
-               "name": "mon-host",
+               "name": "{hostname}",
                "normal": {
                "tags": [
 
                ]
                },
                 "run_list": [
-                       "recipe[ceph::apt]",
-                       "role[ceph-mon]",
-                       "role[ceph-mds]"
+                       "recipe[ceph-cookbooks::apt]",
+                       "role[ceph-cookbooks-mon]",
+                       "role[ceph-cookbooks-mds]"
                ]
        }