Adds Ceph repos needed for installing Ceph on each node 46/246/2
authorTim Rozet <trozet@redhat.com>
Wed, 1 Apr 2015 18:09:27 +0000 (14:09 -0400)
committerTim Rozet <trozet@redhat.com>
Thu, 2 Apr 2015 16:35:07 +0000 (12:35 -0400)
Uses Ceph Giant version as this has been tested to work on intel lab

JIRA: BGS-13

Change-Id: I3c0f533c7fe6104122ce1845acbaffd1ed7bfd48
Signed-off-by: Tim Rozet <trozet@redhat.com>
common/puppet-opnfv/manifests/repo.pp

index b11098c..8d8a025 100644 (file)
@@ -32,5 +32,23 @@ class opnfv::repo {
       enabled => 1,
       gpgcheck => 0,
     }
+
+    yumrepo {
+            "ceph":
+                   baseurl => "http://ceph.com/rpm-giant/el7/\$basearch",
+                   descr => "Ceph packages for \$basearch",
+                   enabled => 1,
+                   gpgcheck => 0;
+            "Ceph-noarch":
+                   baseurl => "http://ceph.com/rpm-giant/el7/noarch",
+                   descr => "Ceph noarch packages",
+                   enabled => 1,
+                   gpgcheck => 0;
+            "ceph-source":
+                   baseurl => "http://ceph.com/rpm-giant/el7/SRPMS",
+                   descr => "Ceph source packages",
+                   enabled => 1,
+                   gpgcheck => 0;
+    }
   }
 }