mirror of
https://github.com/ceph/ceph
synced 2024-12-20 18:33:44 +00:00
b09d85d7ab
A set of scripts used to bring up an OpenStack instance on one site, connect a ceph cluster, add pools to store OpenStack glance images, cinder volumes, nova vms, and cinder backups on rbd, and bring up a nova compute node.
16 lines
541 B
Bash
Executable File
16 lines
541 B
Bash
Executable File
#!/bin/bash -f
|
|
#
|
|
# Remotely setup the stuff needed to run packstack. This should do items 1-4 in
|
|
# https://docs.google.com/document/d/1us18KR3LuLyINgGk2rmI-SVj9UksCE7y4C2D_68Aa8o/edit?ts=56a78fcb
|
|
#
|
|
yum remove -y rhos-release
|
|
rpm -ivh http://rhos-release.virt.bos.redhat.com/repos/rhos-release/rhos-release-latest.noarch.rpm
|
|
rm -rf /etc/yum.repos.d/*
|
|
rm -rf /var/cache/yum/*
|
|
rhos-release 8
|
|
yum update -y
|
|
yum install -y nc puppet vim screen setroubleshoot crudini bpython openstack-packstack
|
|
systemctl disable ntpd
|
|
systemctl stop ntpd
|
|
reboot
|