aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gce_setup/compute_extras.sh
blob: a0835a12ed448cd8e66d44370ab20434f9d0e874 (plain)
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
#!/bin/bash
# Copyright 2015, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
#     * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#     * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
#     * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


# Bash funcs shared that combine common gcutil actions into single commands

# remove_instance removes a named instance
#
# remove_instance <project> <instance_name> [<zone>="us-central1-b"]
remove_instance() {
  local project=$1
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }
  local an_instance=$2
  [[ -n $an_instance ]] || {
    echo "$FUNCNAME: missing arg: an_instance" 1>&2
    return 1
  }
  local zone=$3
  [[ -n $zone ]] || zone="us-central1-b"

  gcloud --project $project --quiet \
    compute instances delete $an_instance  --zone=$zone
}

# has_instance checks if a project contains a named instance
#
# has_instance <project> <instance_name>
has_instance() {
  local project=$1
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }
  local checked_instance=$2
  [[ -n $checked_instance ]] || {
    echo "$FUNCNAME: missing arg: checked_instance" 1>&2
    return 1
  }

  instances=$(gcloud --project $project compute instances list \
    | sed -e 's/ \+/ /g' | cut -d' ' -f 1)
  for i in $instances
  do
    if [[ $i == $checked_instance ]]
    then
      return 0
    fi
  done

  return 1
}

# find_network_ip finds the ip address of a instance if it is present in the project.
#
# find_network_ip <project> <instance_name>
find_network_ip() {
  local project=$1
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }
  local checked_instance=$2
  [[ -n $checked_instance ]] || {
    echo "$FUNCNAME: missing arg: checked_instance" 1>&2
    return 1
  }

  has_instance $project $checked_instance || return 1
  gcloud --project $project compute instances list \
    | grep -e "$checked_instance\s" | sed -e 's/ \+/ /g' | cut -d' ' -f 4
}

# delete_disks deletes a bunch of disks matching a pattern
#
# delete_disks <project> <disk_pattern>
delete_disks() {
  local project=$1
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }
  local disk_pattern=$2
  [[ -n $disk_pattern ]] || {
    echo "$FUNCNAME: missing arg: disk_pattern" 1>&2
    return 1
  }

  trash_disks=$(gcloud --project=$project compute disks list \
    | sed -e 's/ \+/ /g' | cut -d' ' -f 1 | grep $disk_pattern)
  [[ -n $trash_disks ]] && gcloud --project $project \
    --quiet compute disks delete $trash_disks
}

# has_firewall checks if a project contains a named firewall
#
# has_firewall <project> <checked_firewall>
has_firewall() {
  local project=$1
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }
  local checked_firewall=$2
  [[ -n $checked_firewall ]] || {
    echo "$FUNCNAME: missing arg: checked_firewall" 1>&2
    return 1
  }

  instances=$(gcloud --project $project compute firewall-rules list \
    | sed -e 's/ \+/ /g' | cut -d' ' -f 1)
  for i in $instances
  do
    if [[ $i == $checked_firewall ]]
    then
      return 0
    fi
  done

  return 1
}

# remove_firewall removes a named firewall from a project.
#
# remove_firewall <project> <checked_firewall>
remove_firewall() {
  local project=$1
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }
  local a_firewall=$2
  [[ -n $a_firewall ]] || {
    echo "$FUNCNAME: missing arg: a_firewall" 1>&2
    return 1
  }

  gcloud --project $project --quiet compute firewall-rules delete $a_firewall
}

# has_network checks if a project contains a named network
#
# has_network <project> <checked_network>
has_network() {
  local project=$1
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }
  local checked_network=$2
  [[ -n $checked_network ]] || {
    echo "$FUNCNAME: missing arg: checked_network" 1>&2
    return 1
  }

  instances=$(gcloud --project $project compute networks list \
    | sed -e 's/ \+/ /g' | cut -d' ' -f 1)
  for i in $instances
  do
    if [[ $i == $checked_network ]]
    then
      return 0
    fi
  done

  return 1
}

# maybe_setup_dev_network adds a network with the given name with firewalls
# useful to development
#
# - All machines can accessed internally and externally over SSH (port 22)
# - All machines can access one another other the internal network
# - All machines can be accessed externally via port 80, 443, 8080 and 8443
maybe_setup_dev_network() {
  local name=$1
  [[ -n $name ]] || {
    echo "$FUNCNAME: missing arg: network name" 1>&2
    return 1
  }

  local project=$2
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }

  has_network $project $name || {
    echo "creating network '$name'" 1>&2
    gcloud compute --project $project networks create $name || return 1
  }

  # allow instances on the network to connect to each other internally
  has_firewall $project "$name-ssh" || {
    echo "adding firewall '$name-ssh'" 1>&2
    gcloud compute --project $project firewall-rules create "$name-ssh" \
      --network $name  \
      --allow tcp:22 || return 1;
  }

 # allow instances on the network to connect to each other internally
  has_firewall $project "$name-internal" || {
    echo "adding firewall '$name-internal'" 1>&2
    gcloud compute --project $project firewall-rules create "$name-internal" \
      --network $name  \
      --source-ranges 10.0.0.0/16 --allow tcp udp icmp || return 1;
  }

  # allow instances on the network to be connected to from external ips on
  # specific ports
  has_firewall $project "$name-external" || {
    echo "adding firewall '$name-external'" 1>&2
    gcloud compute --project $project firewall-rules create "$name-external" \
      --network $name  \
      --allow tcp:80 tcp:8080 tcp:443 tcp:8443 || return 1;
  }
}

# maybe_remove_dev_network removes a network set up by maybe_setup_dev_network
maybe_remove_dev_network() {
  local name=$1
  [[ -n $name ]] || {
    echo "$FUNCNAME: missing arg: network name" 1>&2
    return 1
  }

  local project=$2
  [[ -n $project ]] || {
    echo "$FUNCNAME: missing arg: project" 1>&2
    return 1
  }

  has_network $project $name || {
    echo "network $name is not present"
    return 0
  }
  for i in $(gcloud compute firewall-rules list \
    | grep "$name-" | cut -d' ' -f 1)
  do
    gcloud compute --quiet firewall-rules delete $i || return 1;
  done
  gcloud compute --quiet networks delete $name
}

# find_named_ip finds the external ip address for a given name.
#
# find_named_ip <named-ip-address>
find_named_ip() {
  local name=$1
  [[ -n $name ]] || { echo "$FUNCNAME: missing arg: name" 1>&2; return 1; }
  [[ $name == 'none' ]] && return 0;

  gcloud compute addresses list | sed -e 's/ \+/ /g' \
    | grep $name | cut -d' ' -f 3
}