-
Notifications
You must be signed in to change notification settings - Fork 0
/
equinix-elastic-ip-public
executable file
·260 lines (217 loc) · 7.76 KB
/
equinix-elastic-ip-public
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
#!/bin/sh
#
#
# OCF resource agent to move an Elastic IP between machines
# within Equinix Metal.
#
# Copyright (c) 2022 Benjamin Arntzen & Protocol Labs
# Based on code of Markus Guertler and Mathieu GRZYBEK
# All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it would be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# Further, this software is distributed without any warranty that it is
# free of the rightful claim of any third person regarding infringement
# or the like. Any license provided herein, whether implied or
# otherwise, applies only to this software file. Patent licenses, if
# any, provided herein do not apply to combinations of this program with
# other software, or any other product whatsoever.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write the Free Software Foundation,
# Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
#
#######################################################################
# Initialization:
: ${OCF_FUNCTIONS_DIR=${OCF_ROOT}/lib/heartbeat}
. ${OCF_FUNCTIONS_DIR}/ocf-shellfuncs
# Defaults
OCF_RESKEY_equinixfact_default="/etc/ansible/facts.d/uuid.fact"
OCF_RESKEY_ip_default=""
: ${OCF_RESKEY_equinixfact=${OCF_RESKEY_equinixfact_default}}
: ${OCF_RESKEY_ip=${OCF_RESKEY_ip_default}}
# Load in Equinix machine UUID and token
MACHINE_UUID=$(crudini --get $OCF_RESKEY_equinixfact default equinix_uuid)
EQUINIX_TOKEN=$(crudini --get $OCF_RESKEY_equinixfact default equinix_token)
EQUINIX_PROJECT=$(crudini --get $OCF_RESKEY_equinixfact default equinix_project)
#######################################################################
USAGE="usage: $0 {start|stop|status|meta-data}";
###############################################################################
###############################################################################
#
# Functions
#
###############################################################################
metadata() {
cat <<END
<?xml version="1.0"?>
<!DOCTYPE resource-agent SYSTEM "ra-api-1.dtd">
<resource-agent name="equinix-elastic-ip-public">
<version>2.0</version>
<longdesc lang="en">
Resource Agent to move a (public) elastic IP address from an instance to another one.
It relies on an Ansible-style fact stored as /etc/ansible/facts.d/uuid.fact to retrieve
a machine UUID and API token with which to move that token to that machine, as well as
Crudini being installed to make it reasonably safe to parse the facts file.
</longdesc>
<shortdesc lang="en">Move a elastic IP</shortdesc>
<parameters>
<parameter name="equinixfact">
<longdesc lang="en">
Path to an INI-style fact file in which a valid UUID for the node and a valid Equinix Metal API token is stored.
</longdesc>
<shortdesc lang="en">Path to Equinix Metal config fact</shortdesc>
<content type="string" default="${OCF_RESKEY_equinixfact_default}" />
</parameter>
<parameter name="ip" unique="1" required="1">
<longdesc lang="en">
The IPv4 (dotted quad notation) address
example "192.168.1.1".
</longdesc>
<shortdesc lang="en">IPv4 address</shortdesc>
<content type="string" default="${OCF_RESKEY_ip_default}" />
</parameter>
</parameters>
<actions>
<action name="start" timeout="180s" />
<action name="stop" timeout="180s" />
<action name="monitor" depth="0" timeout="30s" interval="60s" />
<action name="validate-all" timeout="5s" />
<action name="meta-data" timeout="5s" />
</actions>
</resource-agent>
END
}
emflip_validate() {
if [ -z "$MACHINE_UUID" ]; then
ocf_exit_reason "machine UUID not set"
return $OCF_ERR_CONFIGURED
fi
if [ -z "$EQUINIX_TOKEN" ] ; then
ocf_exit_reason "equinix metal token not found"
return $OCF_ERR_CONFIGURED
fi
if [ -z "$OCF_RESKEY_ip" ] ; then
ocf_exit_reason "IP not set"
return $OCF_ERR_CONFIGURED
fi
return $OCF_SUCCESS
}
emflip_monitor() {
local result
local elastic_ip
local crm_node
crm_node=$(crm_node -n)
# Is the IP active and attached?
currently_assigned=$(curl --retry 5 --retry-connrefused -s -S -X GET \
-H "Content-Type: application/json" \
-H "X-Auth-Token: $EQUINIX_TOKEN" \
"https://api.equinix.com/metal/v1/projects/$EQUINIX_PROJECT/ips?types=public_ipv4&include=assignments.assigned_to" | jq -r --arg ip "$OCF_RESKEY_ip" '.ip_addresses[] | select(.network == $ip)' | jq -r --arg ip "$OCF_RESKEY_ip" '.assignments[] | select(.address == $ip)' | jq -r '.assigned_to.hostname')
assignment_id=$(curl --retry 5 --retry-connrefused -s -S -X GET \
-H "Content-Type: application/json" \
-H "X-Auth-Token: $EQUINIX_TOKEN" \
"https://api.equinix.com/metal/v1/projects/$EQUINIX_PROJECT/ips?types=public_ipv4&include=assignments.assigned_to" | jq -r --arg ip "$OCF_RESKEY_ip" '.ip_addresses[] | select(.network == $ip)' | jq -r --arg ip "$OCF_RESKEY_ip" '.assignments[] | select(.address == $ip)' | jq -r '.id')
if [ "$currently_assigned" = "$crm_node" ] ; then
ocf_log info "$OCF_RESKEY_ip is attached to this machine"
return $OCF_SUCCESS
else
ocf_log warn "$OCF_RESKEY_ip is not attached to this machine"
return $OCF_NOT_RUNNING
fi
}
emflip_stop() {
ocf_log info "Bringing down IP address $OCF_RESKEY_ip"
emflip_monitor
if [ $? = $OCF_NOT_RUNNING ]; then
ocf_log info "Address $OCF_RESKEY_ip already down"
return $OCF_SUCCESS
fi
ocf_log info "Attempting to delete $OCF_RESKEY_ip $assignment_id"
if ! (curl --retry 5 --retry-connrefused -s -S -X DELETE \
-H "Content-Type: application/json" \
-H "X-Auth-Token: $EQUINIX_TOKEN" \
"https://api.equinix.com/metal/v1/ips/$assignment_id") ; then
return $OCF_ERR_GENERIC
fi
emflip_monitor
if [ $? != $OCF_NOT_RUNNING ]; then
ocf_log error "Couldn't unset IP address $OCF_RESKEY_ip."
return $OCF_ERR_GENERIC
fi
ocf_log info "Successfully brought unset $OCF_RESKEY_ip"
return $OCF_SUCCESS
}
emflip_start() {
emflip_monitor
if [ $? = $OCF_SUCCESS ]; then
ocf_log info "$OCF_RESKEY_ip already started"
return $OCF_SUCCESS
fi
ocf_log info "Moving IP address $OCF_RESKEY_ip to UUID $MACHINE_UUID"
if [ -n "$assignment_id" ]; then
ocf_log info "Unassigning IP address $OCF_RESKEY_ip from $assignment_id"
curl --retry 5 --retry-connrefused -s -S -X DELETE \
-H "Content-Type: application/json" \
-H "X-Auth-Token: $EQUINIX_TOKEN" \
"https://api.equinix.com/metal/v1/ips/$assignment_id"
fi
curl --retry 5 --retry-connrefused -s -S -X POST \
-H "Content-Type: application/json" \
-H "X-Auth-Token: $EQUINIX_TOKEN" \
"https://api.equinix.com/metal/v1/devices/$MACHINE_UUID/ips" \
-d '{ "address": "'"$OCF_RESKEY_ip"'/32" }'
if [ $? = 0 ]; then
ocf_log info "$OCF_RESKEY_ip successfully assigned!"
return $OCF_SUCCESS
fi
if [ $? != $OCF_SUCCESS ]; then
ocf_log error "$OCF_RESKEY_ip cannot be set to UUID $MACHINE_UUID, check your UUID and API token"
return $OCF_ERR_GENERIC
fi
emflip_monitor
if [ $? != $OCF_SUCCESS ]; then
ocf_log error "$OCF_RESKEY_ip was set for UUID $MACHINE_UUID but what we fetched says otherwise"
return $OCF_ERR_GENERIC
fi
return $OCF_SUCCESS
}
###############################################################################
#
# MAIN
#
###############################################################################
case $__OCF_ACTION in
meta-data)
metadata
exit $OCF_SUCCESS
;;
usage|help)
echo $USAGE
exit $OCF_SUCCESS
;;
esac
if ! ocf_is_root; then
ocf_log err "You must be root for $__OCF_ACTION operation."
exit $OCF_ERR_PERM
fi
emflip_validate
case $__OCF_ACTION in
start)
emflip_start;;
stop)
emflip_stop;;
monitor)
emflip_monitor;;
validate-all)
exit $?;;
*)
echo $USAGE
exit $OCF_ERR_UNIMPLEMENTED
;;
esac