1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
#!/bin/sh
set -ex
#####################
### PARAM PARSING ###
#####################
SEPARATE_WAL_AND_ROCKSDB=no
if [ "${i}" = "--separate-wal-and-rocksdb" ]; then
SEPARATE_WAL_AND_ROCKSDB=yes
shift
fi
HDD_DEV=${1}
shift
# Guess some facts:
# - cephosd node number
# - drive letter
# - OSD id
# - OSD port number
MAJOR_NUM=$(hostname -s | sed 's#[a-z0-9]*-cephosd-##')
DRIVE_LETTER=$(echo ${HDD_DEV} | sed 's#[sv]d##')
case "${DRIVE_LETTER}" in
b)
CEPH_OSD_ID=${MAJOR_NUM}02
CEPH_OSD_PORT=6806
;;
c)
CEPH_OSD_ID=${MAJOR_NUM}03
CEPH_OSD_PORT=6809
;;
d)
CEPH_OSD_ID=${MAJOR_NUM}04
CEPH_OSD_PORT=6812
;;
e)
CEPH_OSD_ID=${MAJOR_NUM}05
CEPH_OSD_PORT=6815
;;
f)
CEPH_OSD_ID=${MAJOR_NUM}06
CEPH_OSD_PORT=6818
;;
g)
CEPH_OSD_ID=${MAJOR_NUM}07
CEPH_OSD_PORT=6821
;;
h)
CEPH_OSD_ID=${MAJOR_NUM}08
CEPH_OSD_PORT=6824
;;
i)
CEPH_OSD_ID=${MAJOR_NUM}09
CEPH_OSD_PORT=6827
;;
j)
CEPH_OSD_ID=${MAJOR_NUM}10
CEPH_OSD_PORT=6830
;;
k)
CEPH_OSD_ID=${MAJOR_NUM}11
CEPH_OSD_PORT=6833
;;
l)
CEPH_OSD_ID=${MAJOR_NUM}12
CEPH_OSD_PORT=6836
;;
m)
CEPH_OSD_ID=${MAJOR_NUM}13
CEPH_OSD_PORT=6839
;;
n)
CEPH_OSD_ID=${MAJOR_NUM}14
CEPH_OSD_PORT=6842
;;
o)
CEPH_OSD_ID=${MAJOR_NUM}15
CEPH_OSD_PORT=6845
;;
p)
CEPH_OSD_ID=${MAJOR_NUM}16
CEPH_OSD_PORT=6848
;;
q)
CEPH_OSD_ID=${MAJOR_NUM}17
CEPH_OSD_PORT=6851
;;
r)
CEPH_OSD_ID=${MAJOR_NUM}18
CEPH_OSD_PORT=6854
;;
s)
CEPH_OSD_ID=${MAJOR_NUM}19
CEPH_OSD_PORT=6857
;;
t)
CEPH_OSD_ID=${MAJOR_NUM}20
CEPH_OSD_PORT=6860
;;
u)
CEPH_OSD_ID=${MAJOR_NUM}21
CEPH_OSD_PORT=6863
;;
v)
CEPH_OSD_ID=${MAJOR_NUM}22
CEPH_OSD_PORT=6866
;;
w)
CEPH_OSD_ID=${MAJOR_NUM}23
CEPH_OSD_PORT=6869
;;
x)
CEPH_OSD_ID=${MAJOR_NUM}24
CEPH_OSD_PORT=6872
;;
y)
CEPH_OSD_ID=${MAJOR_NUM}25
CEPH_OSD_PORT=6875
;;
z)
CEPH_OSD_ID=${MAJOR_NUM}26
CEPH_OSD_PORT=6878
;;
esac
MOUNT_POINT=/var/lib/ceph/osd/ceph-${CEPH_OSD_ID}
##############################
### Prepare the whole disk ###
##############################
# Make sure the drive exists
if ! [ -e /dev/${HDD_DEV} ] ; then
echo "$0 could not find /dev/${HDD_DEV}: exiting"
exit 1
fi
# ...and that it has a gpt header
if ! blkid /dev/${HDD_DEV} | grep -q gpt ; then
parted -s /dev/${HDD_DEV} mktable gpt
parted -s -a optimal /dev/${HDD_DEV} mkpart primary 1Mi 100%
fi
# ...and that it has PVs
if ! pvs | grep -q /dev/${HDD_DEV}1 ; then
pvcreate -f /dev/${HDD_DEV}1
fi
# ...and that it has a volume group
if ! pvs | grep -q osdvg${CEPH_OSD_ID} ; then
vgcreate osdvg${CEPH_OSD_ID} /dev/${HDD_DEV}1
vgchange -a y osdvg${CEPH_OSD_ID}
fi
# Get the size of the PVs, calculate WAL and RocksDB size
# round them up to 2048 bytes and make sure they are at least 1 GB
if [ "${SEPARATE_WAL_AND_ROCKSDB}" = "yes" ] ; then
PV_SIZE=$(pvdisplay --units b -s /dev/${HDD_DEV}1 | awk '{print $7}')
WAL_SIZE=$((${PV_SIZE} / 1000))
WAL_SIZE=$(($((${WAL_SIZE} / 2048)) * 2048))
WAL_MIN_SIZE=$((1024 * 1024 * 1024))
ROCKSDB_SIZE=$((${PV_SIZE} / 2000))
ROCKSDB_SIZE=$(($((${ROCKSDB_SIZE} / 2048)) * 2048))
ROCKSDB_MIN_SIZE=$((1024 * 1024 * 1024))
if [ ${WAL_SIZE} -lt ${WAL_MIN_SIZE} ] ; then
WAL_SIZE=${WAL_MIN_SIZE}
fi
if [ ${ROCKSDB_SIZE} -lt ${ROCKSDB_MIN_SIZE} ] ; then
ROCKSDB_SIZE=${ROCKSDB_MIN_SIZE}
fi
fi
##################################
### Prepare the conf partition ###
##################################
# Create the 200 config partition
if ! lvs | grep -q conf${CEPH_OSD_ID} ; then
lvcreate -L200M -nconf${CEPH_OSD_ID} osdvg${CEPH_OSD_ID}
fi
# ... and xfs format it
if ! blkid /dev/osdvg${CEPH_OSD_ID}/conf${CEPH_OSD_ID} ; then
mkfs.xfs -f /dev/osdvg${CEPH_OSD_ID}/conf${CEPH_OSD_ID}
fi
# ... and get its UUID
HDD_UUID=$(blkid -o value -s UUID /dev/osdvg${CEPH_OSD_ID}/conf${CEPH_OSD_ID})
# ... and make sure it's mounted
if ! grep -q ${HDD_UUID} /etc/fstab ; then
su ceph -s /bin/sh -c "mkdir -p ${MOUNT_POINT}"
echo "UUID=${HDD_UUID} ${MOUNT_POINT} xfs noatime,nodiratime,logbufs=8 0 0" >> /etc/fstab
mount ${MOUNT_POINT}
fi
####################################################
### Prepare the WAL and RocksDB and data devices ###
####################################################
if [ "${SEPARATE_WAL_AND_ROCKSDB}" = "yes" ] ; then
# Create the Write-Ahead-Log (WAL) device
if ! lvs | grep -q wal${CEPH_OSD_ID} ; then
lvcreate -L${WAL_SIZE}b -nwal${CEPH_OSD_ID} osdvg${CEPH_OSD_ID}
fi
# Create the RocksDB device
if ! lvs | grep -q rdb${CEPH_OSD_ID} ; then
lvcreate -L${ROCKSDB_SIZE}b -nrdb${CEPH_OSD_ID} osdvg${CEPH_OSD_ID}
fi
fi
# Calculate remaining space on the VG
FREE_ON_VG=$(vgs --separator , osdvg${CEPH_OSD_ID} | q -d, -H "SELECT VFree FROM - WHERE VG='osdvg${CEPH_OSD_ID}'")
# Create the data device
if ! lvs | grep -q data${CEPH_OSD_ID} ; then
lvcreate -L${FREE_ON_VG} -ndata${CEPH_OSD_ID} osdvg${CEPH_OSD_ID}
fi
# Make sure Ceph has access to disks
adduser ceph disk || true
#############################################################
### Prepare ceph.conf to include IP and port for this OSD ###
#############################################################
DEFROUTE_IF=`awk '{ if ( $2 == "00000000" ) print $1 }' /proc/net/route`
if [ -n "${DEFROUTE_IF}" ] ; then
if [ -x /bin/ip ] ; then
DEFROUTE_IP=`LC_ALL=C ip addr show "${DEFROUTE_IF}" | grep inet | head -n 1 | awk '{print $2}' | cut -d/ -f1 | grep -E '^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$'`
else
DEFROUTE_IP=`hostname -i | grep -E '^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$'`
fi
fi
# Check if the OSD is in ceph.conf
if ! grep -q "osd.${CEPH_OSD_ID}" /etc/ceph/ceph.conf ; then
echo "[osd.${CEPH_OSD_ID}]
public addr = ${DEFROUTE_IP}:${CEPH_OSD_PORT}
cluster addr = ${DEFROUTE_IP}
" >>/etc/ceph/ceph.conf
fi
chown ceph:ceph ${MOUNT_POINT}
# Create a fsid if it doesn't exist, otherwise load it
if [ -r ${MOUNT_POINT}/fsid ] ; then
UUID=$(cat /var/lib/ceph/osd/ceph-${CEPH_OSD_ID}/fsid)
else
UUID=$(uuidgen)
su ceph -s /bin/sh -c "echo ${UUID} >${MOUNT_POINT}/fsid"
fi
# Make sure we have the correct attributes inside the store
# Frist, declare we're using bluestore
if ! [ -e ${MOUNT_POINT}/type ] ; then
su ceph -s /bin/sh -c "echo bluestore >${MOUNT_POINT}/type"
fi
chown ceph:ceph ${MOUNT_POINT}/type
# Declare the data device
if ! [ -L ${MOUNT_POINT}/block ] ; then
su ceph -s /bin/sh -c "ln -s /dev/osdvg${CEPH_OSD_ID}/data${CEPH_OSD_ID} ${MOUNT_POINT}/block"
fi
chown --no-dereference ceph:ceph ${MOUNT_POINT}/block
if [ "${SEPARATE_WAL_AND_ROCKSDB}" = "yes" ] ; then
# ... then the Write-Ahead-Log (WAL) device
if ! [ -L ${MOUNT_POINT}/block.wal ] ; then
su ceph -s /bin/sh -c "ln -s /dev/osdvg${CEPH_OSD_ID}/wal${CEPH_OSD_ID} ${MOUNT_POINT}/block.wal"
fi
chown --no-dereference ceph:ceph ${MOUNT_POINT}/block.wal
# ... then the RocksDB device
if ! [ -L ${MOUNT_POINT}/block.db ] ; then
su ceph -s /bin/sh -c "ln -s /dev/osdvg${CEPH_OSD_ID}/rdb${CEPH_OSD_ID} ${MOUNT_POINT}/block.db"
fi
chown --no-dereference ceph:ceph ${MOUNT_POINT}/block.db
fi
chown ceph:ceph --no-dereference /dev/osdvg${CEPH_OSD_ID}/*
chown ceph:disk /dev/dm-*
# Run ceph osd new
if ! [ -e ${MOUNT_POINT}/oci_ceph_osd_new_done ] ; then
OSD_SECRET=$(ceph-authtool --gen-print-key)
echo "{\"cephx_secret\": \"$OSD_SECRET\"}" | ceph osd new ${UUID} ${CEPH_OSD_ID} -i - -n client.bootstrap-osd -k /var/lib/ceph/bootstrap-osd/ceph.keyring
su ceph -s /bin/sh -c "echo '' >${MOUNT_POINT}/oci_ceph_osd_new_done"
fi
# Create the keyring file
if ! [ -e ${MOUNT_POINT}/keyring ] ; then
# Create the OSD keyring file
ceph-authtool --create-keyring ${MOUNT_POINT}/keyring --name osd.${CEPH_OSD_ID} --add-key ${OSD_SECRET}
chown ceph:ceph ${MOUNT_POINT}/keyring
fi
# Create the OSD on the config file (ie: ceph-osd --mkfs)
if ! [ -r ${MOUNT_POINT}/bluefs ] ; then
ceph-osd --setuser ceph -i ${CEPH_OSD_ID} --mkfs --osd-uuid $UUID
chown -R ceph:ceph ${MOUNT_POINT}
fi
# Make sure the systemd service matching the OSD exists.
if ! [ -L /etc/systemd/system/ceph-osd.target.wants/ceph-osd@${CEPH_OSD_ID}.service ] ; then
systemctl enable ceph-osd@${CEPH_OSD_ID}
fi
# Start the service.
systemctl start ceph-osd@${CEPH_OSD_ID}
# Wait 5 seconds to allow settling-up of CEPH
echo "Waiting 5 seconds to settle-up before next run..."
sleep 5
|