11
11
# identities -> useridentities
12
12
# egressnetworkpolicies -> registry/egressnetworkpolicy
13
13
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"
15
15
usage () {
16
16
echo " ${USAGE} "
17
17
exit 1
18
18
}
19
19
20
+ # default values
20
21
APPLY=false
21
22
OS_MASTER_CONFIG_DIR=" /etc/origin/master"
22
23
OS_ETCD_PREFIX=" /openshift.io"
24
+ BACKUP_DIR=" $HOME /openshift-3.4-migration-backup"
23
25
24
- while getopts " :ac:p:" opt; do
26
+ while getopts " :ac:p:b: " opt; do
25
27
case $opt in
26
28
a)
27
29
APPLY=true
@@ -32,6 +34,9 @@ while getopts ":ac:p:" opt; do
32
34
p)
33
35
OS_ETCD_PREFIX=" ${OPTARG} "
34
36
;;
37
+ b)
38
+ BACKUP_DIR=" ${OPTARG} "
39
+ ;;
35
40
\? )
36
41
usage
37
42
;;
73
78
74
79
if [[ " $APPLY " != " true" ]]; then
75
80
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
76
86
fi
77
87
78
88
if ! command -v etcdctl & > /dev/null; then
@@ -88,36 +98,66 @@ echo_mode() {
88
98
fi
89
99
}
90
100
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
+
91
110
copy_key () {
92
111
echo_mode " copying ${1} to ${2} "
93
112
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
96
115
fi
97
- if etcdctl get " ${2} " & > /dev/null; then
116
+ if existing= $( etcdctl get " ${2} " 2 > /dev/null) ; then
98
117
echo_mode " overwriting existing key ${2} "
99
118
fi
100
119
if [[ " $APPLY " = " true" ]]; then
120
+ backup_key " ${1} " " ${value} "
121
+ if [[ -n " ${existing} " ]]; then
122
+ backup_key " ${2} " " ${existing} "
123
+ fi
101
124
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
104
131
fi
105
132
fi
106
133
return 0
107
134
}
108
135
109
136
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
111
143
newkey=" ${2} /$( basename " ${key} " ) "
112
144
copy_key " ${key} " " ${newkey} "
113
145
done
114
146
}
115
147
116
- echo " Migrating Users"
148
+ IFS=$' \n '
149
+
150
+ echo_mode " Migrating Users"
117
151
copy_keys " ${OS_ETCD_PREFIX} /identities" " ${OS_ETCD_PREFIX} /useridentities"
118
152
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