mirror of
https://github.com/ceph/ceph
synced 2024-12-20 10:23:24 +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.
11 lines
313 B
Bash
Executable File
11 lines
313 B
Bash
Executable File
#/bin/bash -fv
|
|
#
|
|
# Install a simple ceph cluster upon which openstack images will be stored.
|
|
#
|
|
ceph_node=${1}
|
|
source copy_func.sh
|
|
copy_file files/$OS_CEPH_ISO $ceph_node .
|
|
copy_file execs/ceph_cluster.sh $ceph_node . 0777
|
|
copy_file execs/ceph-pool-create.sh $ceph_node . 0777
|
|
ssh $ceph_node ./ceph_cluster.sh $*
|