-
Notifications
You must be signed in to change notification settings - Fork 524
/
populate_kv.sh
executable file
·38 lines (36 loc) · 1.13 KB
/
populate_kv.sh
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
#!/bin/bash
set -e
function kv {
# Note the 'cas' command puts a value in the KV store if it is empty
local key
local value
read -r key value <<< "$*"
log "Adding key ${key} with value ${value} to KV store."
etcdctl "${ETCDCTL_OPTS[@]}" "${KV_TLS[@]}" set "${CLUSTER_PATH}""${key}" "${value}" || log "Value is already set"
}
function populate_kv {
if [[ -z $KV_TYPE ]]; then
echo "Please specify a KV store, e.g: etcd."
exit 1
fi
case "$KV_TYPE" in
etcd)
etcdctl "${ETCDCTL_OPTS[@]}" "${KV_TLS[@]}" mkdir "${CLUSTER_PATH}/client_host" || log "client_host already exists"
# if ceph.defaults found in /etc/ceph/ use that
if [[ -e "/etc/ceph/ceph.defaults" ]]; then
local defaults_path="/etc/ceph/ceph.defaults"
else
# else use defaults
defaults_path="/opt/ceph-container/etc/ceph.defaults"
fi
# read defaults file, grab line with key<space>value without comment #
grep '^.* .*' "$defaults_path" | grep -v '#' | while read -r line; do
kv "$line"
done
;;
*)
echo "$KV_TYPE: KV store is not supported."
exit 1
;;
esac
}