summaryrefslogtreecommitdiffstats
path: root/common/puppet-opnfv
diff options
context:
space:
mode:
authorTim Rozet <trozet@redhat.com>2015-04-01 14:09:27 -0400
committerTim Rozet <trozet@redhat.com>2015-04-02 12:35:07 -0400
commite6182183afbdc6984f7a8fdf75969b8c4c72d9f6 (patch)
tree32d3270ce28b281ad59addfe78c680ce216d74fb /common/puppet-opnfv
parent71bf7b37f4caaab89da39b8109fc18dc658e70cc (diff)
Adds Ceph repos needed for installing Ceph on each node
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>
Diffstat (limited to 'common/puppet-opnfv')
-rw-r--r--common/puppet-opnfv/manifests/repo.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/puppet-opnfv/manifests/repo.pp b/common/puppet-opnfv/manifests/repo.pp
index b11098c..8d8a025 100644
--- a/common/puppet-opnfv/manifests/repo.pp
+++ b/common/puppet-opnfv/manifests/repo.pp
@@ -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;
+ }
}
}