Skip to content

Commit cfd7a9b

Browse files
sjenning0xmichalis
authored andcommitted
backup and remove keys during migration
1 parent f3d05c1 commit cfd7a9b

File tree

1 file changed

+54
-14
lines changed

1 file changed

+54
-14
lines changed

contrib/migration/fix-3.4-paths.sh

+54-14
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,19 @@
1111
# identities -> useridentities
1212
# egressnetworkpolicies -> registry/egressnetworkpolicy
1313

14-
USAGE="${0} [-a] [-c os-master-config-dir] [-p os-etcd-prefix] etcd-endpoints"
14+
USAGE="${0} [-a] [-c os-master-config-dir] [-p os-etcd-prefix] [-b backup-dir] etcd-endpoints"
1515
usage() {
1616
echo "${USAGE}"
1717
exit 1
1818
}
1919

20+
# default values
2021
APPLY=false
2122
OS_MASTER_CONFIG_DIR="/etc/origin/master"
2223
OS_ETCD_PREFIX="/openshift.io"
24+
BACKUP_DIR="$HOME/openshift-3.4-migration-backup"
2325

24-
while getopts ":ac:p:" opt; do
26+
while getopts ":ac:p:b:" opt; do
2527
case $opt in
2628
a)
2729
APPLY=true
@@ -32,6 +34,9 @@ while getopts ":ac:p:" opt; do
3234
p)
3335
OS_ETCD_PREFIX="${OPTARG}"
3436
;;
37+
b)
38+
BACKUP_DIR="${OPTARG}"
39+
;;
3540
\?)
3641
usage
3742
;;
@@ -73,6 +78,11 @@ fi
7378

7479
if [[ "$APPLY" != "true" ]]; then
7580
echo "Running in dry-run mode. Use -a option to apply changes."
81+
else
82+
if ! mkdir -p "${BACKUP_DIR}"; then
83+
echo "Unable to create backup directory ${BACKUP_DIR}"
84+
exit 1
85+
fi
7686
fi
7787

7888
if ! command -v etcdctl &>/dev/null; then
@@ -88,36 +98,66 @@ echo_mode() {
8898
fi
8999
}
90100

101+
backup_key() {
102+
key="${1}"
103+
value="${2}"
104+
105+
backupfile="${BACKUP_DIR}/${key}"
106+
mkdir -p "$(dirname "${backupfile}")"
107+
echo "$value" > "${backupfile}"
108+
}
109+
91110
copy_key() {
92111
echo_mode "copying ${1} to ${2}"
93112
if ! value="$(etcdctl get "${1}")"; then
94-
echo "failed to get key ${1}"
95-
return 1
113+
echo_mode "failed to get key ${1}"
114+
exit 1
96115
fi
97-
if etcdctl get "${2}" &>/dev/null; then
116+
if existing=$(etcdctl get "${2}" 2>/dev/null); then
98117
echo_mode "overwriting existing key ${2}"
99118
fi
100119
if [[ "$APPLY" = "true" ]]; then
120+
backup_key "${1}" "${value}"
121+
if [[ -n "${existing}" ]]; then
122+
backup_key "${2}" "${existing}"
123+
fi
101124
if ! etcdctl set "${2}" "$value" >/dev/null; then
102-
echo "failed to set key ${2}"
103-
return 1
125+
echo "failed to set key ${2}"
126+
exit 1
127+
fi
128+
if ! etcdctl rm "${1}" >/dev/null; then
129+
echo "failed to remove old key ${1}"
130+
exit 1
104131
fi
105132
fi
106133
return 0
107134
}
108135

109136
copy_keys() {
110-
for key in $(etcdctl ls "${1}"); do
137+
output="$(etcdctl ls "${1}")"
138+
if [[ $? -ne 0 || -z "$output" ]]; then
139+
echo_mode "No keys found to migrate"
140+
return
141+
fi
142+
for key in $output; do
111143
newkey="${2}/$(basename "${key}")"
112144
copy_key "${key}" "${newkey}"
113145
done
114146
}
115147

116-
echo "Migrating Users"
148+
IFS=$'\n'
149+
150+
echo_mode "Migrating Users"
117151
copy_keys "${OS_ETCD_PREFIX}/identities" "${OS_ETCD_PREFIX}/useridentities"
118152

119-
echo "Migrating Egress Policies"
120-
for project in $(etcdctl ls "${OS_ETCD_PREFIX}/egressnetworkpolicies"); do
121-
projectname="$(basename "${project}")"
122-
copy_keys "${OS_ETCD_PREFIX}/egressnetworkpolicies/${projectname}" "${OS_ETCD_PREFIX}/registry/egressnetworkpolicy/${projectname}"
123-
done
153+
echo_mode "Migrating Egress Policies"
154+
output="$(etcdctl ls "${OS_ETCD_PREFIX}/egressnetworkpolicies")"
155+
if [[ $? -ne 0 || -z "$output" ]]; then
156+
echo_mode "No keys found to migrate"
157+
else
158+
for project in $output; do
159+
projectname="$(basename "${project}")"
160+
echo_mode "Project $projectname"
161+
copy_keys "${OS_ETCD_PREFIX}/egressnetworkpolicies/${projectname}" "${OS_ETCD_PREFIX}/registry/egressnetworkpolicy/${projectname}"
162+
done
163+
fi

0 commit comments

Comments
 (0)