If you would like to try out gluster, a new CentOS based docker container is available on the docker hub at
.For correctness and performance reasons, we recommend running Gluster on an host-mounted XFS volume that resides on a separate device from the root filesystem. For this proof of concept, we use only a single node gluster daemon.
This community image was originally created by Frederick F. Kautz IV and Harshavardhana.
dd if=/dev/zero of=/data/gluster.xfs bs=1M count=2048 mkfs.xfs -isize=512 /data/gluster.xfs mkdir /mnt/gluster mount -oloop,inode64,noatime /data/gluster.xfs /mnt/gluster
host # docker run --privileged -i -t -h gluster -v /mnt/gluster:/mnt/vault \ gluster/gluster:latest container # df -h /mnt/vault Filesystem Size Used Avail Use% Mounted on /dev/loop4 2014M 45M 1969M 4% /mnt/vault
GLUSTER_CONTAINER_ID=$(docker ps | grep -i gluster | awk {'print $1'}
GLUSTER_IPADDR=$(docker inspect $GLUSTER_CONTAINER_ID | grep -i ipaddr | \ sed -e 's/\"//g' -e 's/\,//g' | awk {'print $2'})
mount -t glusterfs ${GLUSTER_IPADDR}:$VOLUME_NAME /mnt/gfs
docker run -i -t -h gluster-client -v /mnt/gfs:/mnt/${VOLUME_NAME} gluster/gluster:latest
docker commit $GLUSTER_CONTAINER_ID mygluster:latest docker kill $GLUSTER_CONTAINER_ID
docker run --privileged -i -t -h gluster -v /mnt/gluster:/mnt/vault mygluster:latest
2020 has not been a year we would have been able to predict. With a worldwide pandemic and lives thrown out of gear, as we head into 2021, we are thankful that our community and project continued to receive new developers, users and make small gains. For that and a...
It has been a while since we provided an update to the Gluster community. Across the world various nations, states and localities have put together sets of guidelines around shelter-in-place and quarantine. We request our community members to stay safe, to care for their loved ones, to continue to be...
The initial rounds of conversation around the planning of content for release 8 has helped the project identify one key thing – the need to stagger out features and enhancements over multiple releases. Thus, while release 8 is unlikely to be feature heavy as previous releases, it will be the...