-
Notifications
You must be signed in to change notification settings - Fork 13
/
startup-script-backup.tpl
300 lines (288 loc) · 10.1 KB
/
startup-script-backup.tpl
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#!/bin/bash
# Setup console and startup-script logging
LOG_FILE=/var/log/cloud/startup-script.log
mkdir -p /var/log/cloud
[[ -f $LOG_FILE ]] || /usr/bin/touch $LOG_FILE
npipe=/tmp/$$.tmp
trap "rm -f $npipe" EXIT
mknod $npipe p
tee <$npipe -a $LOG_FILE /dev/ttyS0 &
exec 1>&-
exec 1>$npipe
exec 2>&1
# Run Immediately Before MCPD starts
/usr/bin/setdb provision.extramb 1024
/usr/bin/setdb restjavad.useextramb true
# skip startup script if already complete
if [[ -f /config/startup_finished ]]; then
echo "Onboarding complete, skip startup script"
exit
fi
mkdir -p /config/cloud /var/config/rest/downloads /var/lib/cloud/icontrollx_installs
# Create runtime configuration on first boot
if [[ ! -f /config/nicswap_finished ]]; then
cat << 'EOF' > /config/cloud/runtime-init-conf.yaml
---
controls:
extensionInstallDelayInMs: 60000
runtime_parameters:
- name: USER_NAME
type: static
value: ${bigip_username}
- name: SSH_KEYS
type: static
value: "${ssh_keypair}"
- name: HOST_NAME
type: metadata
metadataProvider:
environment: gcp
type: compute
field: name
EOF
if ${gcp_secret_manager_authentication}; then
cat << 'EOF' >> /config/cloud/runtime-init-conf.yaml
- name: ADMIN_PASS
type: secret
secretProvider:
environment: gcp
type: SecretsManager
version: latest
secretId: ${bigip_password}
pre_onboard_enabled: []
EOF
else
cat << 'EOF' >> /config/cloud/runtime-init-conf.yaml
- name: ADMIN_PASS
type: static
value: ${bigip_password}
pre_onboard_enabled: []
EOF
fi
cat /config/cloud/runtime-init-conf.yaml > /config/cloud/runtime-init-conf-backup.yaml
cat << 'EOF' >> /config/cloud/runtime-init-conf.yaml
extension_packages:
install_operations:
- extensionType: do
extensionVersion: ${DO_VER}
extensionUrl: ${DO_URL}
- extensionType: as3
extensionVersion: ${AS3_VER}
extensionUrl: ${AS3_URL}
- extensionType: ts
extensionVersion: ${TS_VER}
extensionUrl: ${TS_URL}
- extensionType: cf
extensionVersion: ${CFE_VER}
extensionUrl: ${CFE_URL}
- extensionType: fast
extensionVersion: ${FAST_VER}
extensionUrl: ${FAST_URL}
extension_services:
service_operations:
- extensionType: do
type: inline
value:
schemaVersion: 1.0.0
class: Device
async: true
Common:
class: Tenant
hostname: '{{{HOST_NAME}}}.com'
myNtp:
class: NTP
servers:
- 169.254.169.254
timezone: UTC
myDns:
class: DNS
nameServers:
- 169.254.169.254
myProvisioning:
class: Provision
ltm: nominal
admin:
class: User
partitionAccess:
all-partitions:
role: admin
password: '{{{ADMIN_PASS}}}'
shell: bash
keys:
- '{{{SSH_KEYS}}}'
userType: regular
'{{{USER_NAME}}}':
class: User
partitionAccess:
all-partitions:
role: admin
password: '{{{ADMIN_PASS}}}'
shell: bash
keys:
- '{{{SSH_KEYS}}}'
userType: regular
post_onboard_enabled: []
EOF
cat << 'EOF' >> /config/cloud/runtime-init-conf-backup.yaml
extension_services:
service_operations:
- extensionType: do
type: inline
value:
schemaVersion: 1.0.0
class: Device
async: true
Common:
class: Tenant
hostname: '{{{HOST_NAME}}}.com'
myNtp:
class: NTP
servers:
- 169.254.169.254
timezone: UTC
myDns:
class: DNS
nameServers:
- 169.254.169.254
myProvisioning:
class: Provision
ltm: nominal
admin:
class: User
partitionAccess:
all-partitions:
role: admin
password: '{{{ADMIN_PASS}}}'
shell: bash
keys:
- '{{{SSH_KEYS}}}'
userType: regular
'{{{USER_NAME}}}':
class: User
partitionAccess:
all-partitions:
role: admin
password: '{{{ADMIN_PASS}}}'
shell: bash
keys:
- '{{{SSH_KEYS}}}'
userType: regular
post_onboard_enabled: []
EOF
fi
# Create nic_swap script when multi nic on first boot
COMPUTE_BASE_URL="http://metadata.google.internal/computeMetadata/v1"
if [[ ${NIC_COUNT} && ! -f /config/nicswap_finished ]]; then
cat << 'EOF' > /config/cloud/nic_swap.sh
#!/bin/bash
source /usr/lib/bigstart/bigip-ready-functions
wait_bigip_ready
echo "before nic swapping"
tmsh list sys db provision.1nicautoconfig
tmsh list sys db provision.managementeth
echo "after nic swapping"
bigstart stop tmm
echo "ip addr"
ip addr
/usr/bin/cat /etc/ts/common/image.cfg
echo "Done changing interface"
if [[ -f /config/nicswap_finished ]]; then
echo "Skip first run steps, already ran."
else
tmsh modify sys db provision.managementeth value eth1
sed -i "s/iface0=eth0/iface0=eth1/g" /etc/ts/common/image.cfg
/usr/bin/touch /config/nicswap_finished
reboot
fi
EOF
fi
# Create run_runtime_init.sh script on first boot
if [ ! -f /config/nicswap_finished ]; then
cat << 'EOF' > /config/cloud/run_runtime_init.sh
#!/bin/bash
source /usr/lib/bigstart/bigip-ready-functions
wait_bigip_ready
if ${NIC_COUNT} ; then
echo "Running Multi NIC Changes for Management"
echo "---Mgmt interface setting---"
tmsh list sys db provision.managementeth
tmsh list sys db provision.1nicautoconfig
echo "Set TMM networks"
ip r s
# Wait until a little more until dhcp/chmand is finished re-configuring MGMT IP w/ "chmand[4267]: 012a0003:3: Mgmt Operation:0 Dest:0.0.0.0"
MGMTADDRESS=$(curl -s -f --retry 10 -H "Metadata-Flavor: Google" http://metadata.google.internal/computeMetadata/v1/instance/network-interfaces/1/ip)
NONMGMTADDRESS=$(curl -s -f --retry 10 -H "Metadata-Flavor: Google" http://metadata.google.internal/computeMetadata/v1/instance/network-interfaces/0/ip)
MGMTMASK=$(curl -s -f --retry 10 -H "Metadata-Flavor: Google" http://metadata.google.internal/computeMetadata/v1/instance/network-interfaces/1/subnetmask)
MGMTGATEWAY=$(curl -s -f --retry 10 -H "Metadata-Flavor: Google" http://metadata.google.internal/computeMetadata/v1/instance/network-interfaces/1/gateway)
MGMTMTU=$(curl -s -f --retry 10 -H "Metadata-Flavor: Google" http://metadata.google.internal/computeMetadata/v1/instance/network-interfaces/1/mtu)
MGMTNETWORK=$(/bin/ipcalc -n $MGMTADDRESS $MGMTMASK | cut -d= -f2)
# tmsh modify sys global-settings mgmt-dhcp disabled
# tmsh delete sys management-route all
# tmsh delete sys management-ip all
# wait_bigip_ready
# # Wait until a little more until dhcp/chmand is finished re-configuring MGMT IP w/ "chmand[4267]: 012a0003:3: Mgmt Operation:0 Dest:0.0.0.0"
# sleep 15
# MGMT_GW=$(egrep static-routes /var/lib/dhclient/dhclient.leases | tail -1 | grep -oE \'[^ ]+$\' | tr -d \';\')
# SELF_IP_MGMT=$(egrep fixed-address /var/lib/dhclient/dhclient.leases | tail -1 | grep -oE \'[^ ]+$\' | tr -d \';\')
# MGMT_BITMASK=$(egrep static-routes /var/lib/dhclient/dhclient.leases | tail -1 | cut -d \\' -f 2 | cut -d \' \' -f 1 | cut -d \'.\' -f 1)
# MGMT_NETWORK=$(egrep static-routes /var/lib/dhclient/dhclient.leases | tail -1 | cut -d \\' -f 2 | cut -d \' \' -f 1 | cut -d \'.\' -f 2-4).0
echo $MGMTADDRESS
echo $MGMTMASK
echo $MGMTGATEWAY
echo $MGMTMTU
echo $MGMTNETWORK
echo $NONMGMTADDRESS
tmsh modify sys global-settings gui-setup disabled
tmsh modify sys global-settings mgmt-dhcp disabled
tmsh delete sys management-route all
tmsh delete sys management-ip all
echo "ip r s default via $NONMGMTADDRESS"
/usr/bin/ip route delete default via $NONMGMTADDRESS
tmsh delete sys management-ip all
tmsh create sys management-ip $MGMTADDRESS/32
echo "tmsh list sys management-ip - "
tmsh list sys management-ip
tmsh create sys management-route mgmt_gw network $MGMTGATEWAY/32 type interface mtu $MGMTMTU
tmsh create sys management-route mgmt_net network $MGMTNETWORK/$MGMTMASK gateway $MGMTGATEWAY mtu $MGMTMTU
tmsh create sys management-route defaultManagementRoute network default gateway $MGMTGATEWAY mtu $MGMTMTU
tmsh modify sys global-settings remote-host add { metadata.google.internal { hostname metadata.google.internal addr 169.254.169.254 } }
tmsh modify sys management-dhcp sys-mgmt-dhcp-config request-options delete { ntp-servers }
echo "Setting DNS resolver to Cloud DNS"
tmsh modify sys dns name-servers add { 169.254.169.254 }
tmsh save /sys config
echo "ip r s"
ip r s
echo "dig cdn.f5.com"
dig cdn.f5.com
echo "dig google.com done"
fi
for i in {1..30}; do
curl -fv --retry 1 --connect-timeout 5 -L ${INIT_URL} -o "/var/config/rest/downloads/f5-bigip-runtime-init.gz.run" && break || sleep 10
done
bash /var/config/rest/downloads/f5-bigip-runtime-init.gz.run -- '--cloud gcp' 2>&1
/usr/bin/cat /config/cloud/runtime-init-conf.yaml
/usr/local/bin/f5-bigip-runtime-init --config-file /config/cloud/runtime-init-conf.yaml 2>&1
sleep 5
/usr/bin/cat /config/cloud/runtime-init-conf-backup.yaml
/usr/local/bin/f5-bigip-runtime-init --config-file /config/cloud/runtime-init-conf-backup.yaml 2>&1
sleep 5
/usr/local/bin/f5-bigip-runtime-init --config-file /config/cloud/runtime-init-conf-backup.yaml 2>&1
/usr/bin/touch /config/startup_finished
EOF
fi
ls -ltr /config
sleep 15
# Run scripts based on number of nics
if [[ ${NIC_COUNT} && -f /config/nicswap_finished ]];then
echo "Running run_runtime_init.sh"
chmod +x /config/cloud/run_runtime_init.sh
nohup /config/cloud/run_runtime_init.sh &
else
echo "Running nic_swap.sh"
chmod +x /config/cloud/nic_swap.sh
nohup /config/cloud/nic_swap.sh &
fi
if ! ${NIC_COUNT} ;then
echo "Running run_runtime_init.sh"
chmod +x /config/cloud/run_runtime_init.sh
nohup /config/cloud/run_runtime_init.sh &
fi