forked from rcarmo/azure-k3s-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·221 lines (190 loc) · 6.05 KB
/
Makefile
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
# Set environment variables
export COMPUTE_GROUP?=k3s-cluster
export STORAGE_GROUP?=k3s-storage
export LOCATION?=eastus
export MASTER_COUNT?=1
export AGENT_COUNT?=3
export MASTER_FQDN=$(COMPUTE_GROUP)-master0.$(LOCATION).cloudapp.azure.com
export LOADBALANCER_FQDN=$(COMPUTE_GROUP)-agents-lb.$(LOCATION).cloudapp.azure.com
export VMSS_NAME=agents
export ADMIN_USERNAME?=cluster
export TIMESTAMP=`date "+%Y-%m-%d-%H-%M-%S"`
export FILE_SHARES=config data registry
export STORAGE_ACCOUNT_NAME?=shared0$(shell echo $(MASTER_FQDN)|shasum|base64|tr '[:upper:]' '[:lower:]'|cut -c -16)
export SHARE_NAME?=data
export SHELL=/bin/bash
# Permanent local overrides
-include .env
SSH_KEY_FILES:=$(ADMIN_USERNAME).pem $(ADMIN_USERNAME).pub
SSH_KEY:=$(ADMIN_USERNAME).pem
# Do not output warnings, do not validate or add remote host keys (useful when doing successive deployments or going through the load balancer)
SSH_TO_MASTER:=ssh -q -A -i keys/$(SSH_KEY) $(ADMIN_USERNAME)@$(MASTER_FQDN) -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null
# dump resource groups
resources:
az group list --output table
# Dump list of location IDs
locations:
az account list-locations --output table
sizes:
az vm list-sizes --location=$(LOCATION) --output table
# Generate SSH keys for the cluster (optional)
keys:
mkdir keys
ssh-keygen -b 2048 -t rsa -f keys/$(ADMIN_USERNAME) -q -N ""
mv keys/$(ADMIN_USERNAME) keys/$(ADMIN_USERNAME).pem
chmod 0600 keys/*
# Generate the Azure Resource Template parameter files
params:
$(eval STORAGE_ACCOUNT_KEY := $(shell az storage account keys list \
--resource-group $(STORAGE_GROUP) \
--account-name $(STORAGE_ACCOUNT_NAME) \
--query "[0].value" \
--output tsv | tr -d '"'))
@mkdir parameters 2> /dev/null; STORAGE_ACCOUNT_KEY=$(STORAGE_ACCOUNT_KEY) python genparams.py > parameters/cluster.json
# Cleanup parameters
clean:
rm -rf parameters
deploy-storage:
-az group create --name $(STORAGE_GROUP) --location $(LOCATION) --output table
-az storage account create \
--name $(STORAGE_ACCOUNT_NAME) \
--resource-group $(STORAGE_GROUP) \
--location $(LOCATION) \
--https-only \
--output table
$(foreach SHARE_NAME, $(FILE_SHARES), \
az storage share create --account-name $(STORAGE_ACCOUNT_NAME) --name $(SHARE_NAME) --output tsv;)
# Create a resource group and deploy the cluster resources inside it
deploy-compute:
-az group create --name $(COMPUTE_GROUP) --location $(LOCATION) --output table
az group deployment create \
--template-file templates/cluster.json \
--parameters @parameters/cluster.json \
--resource-group $(COMPUTE_GROUP) \
--name cli-$(LOCATION) \
--output table \
--no-wait
redeploy:
-make destroy-compute
make params
while [[ $$(az group list | grep Deleting) =~ "Deleting" ]]; do sleep 30; done
make deploy-compute
# create a set of SMB shares on the storage account
create-shares:
$(eval STORAGE_ACCOUNT := $(shell az storage account list --resource-group ci-swarm-cluster --output tsv --query "[].name"))
$(foreach SHARE_NAME, $(FILE_SHARES), \
az storage share create --account-name $(STORAGE_ACCOUNT_NAME) --name $(SHARE_NAME) --output tsv;)
# Destroy the entire resource group and all cluster resources
destroy-compute:
az group delete \
--name $(COMPUTE_GROUP) \
--no-wait
destroy-storage:
az group delete \
--name $(STORAGE_GROUP) \
--no-wait
# SSH to master node
proxy:
-cat keys/cluster.pem | ssh-add -k -
$(SSH_TO_MASTER) \
-L 9080:localhost:80 \
-L 9081:localhost:81 \
-L 8080:localhost:8080 \
-L 4040:localhost:4040
# Show k3s helper log
tail-helper:
-cat keys/cluster.pem | ssh-add -k -
$(SSH_TO_MASTER) \
sudo journalctl -f -u k3s-helper
# View deployment details
view-deployment:
az group deployment operation list \
--resource-group $(COMPUTE_GROUP) \
--name cli-$(LOCATION) \
--query "[].{OperationID:operationId,Name:properties.targetResource.resourceName,Type:properties.targetResource.resourceType,State:properties.provisioningState,Status:properties.statusCode}" \
--output table
# List VMSS instances
list-agents:
az vmss list-instances \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--output table
# Scale VMSS instances
scale-agents-%:
az vmss scale \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--new-capacity $* \
--output table \
--no-wait
# Stop all VMSS instances
stop-agents:
az vmss stop \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--no-wait
# Start all VMSS instances
start-agents:
az vmss start \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--no-wait
# Show info
show-agents:
az vmss show \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--output json
# Individual agent size
resize-agents-up:
az vmss update \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--set sku.name=Standard_F8s \
&& az vmss update-instances \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--instance-ids=* \
--no-wait
resize-agents-down:
az vmss update \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--set sku.name=Standard_B2s \
&& az vmss update-instances \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--instance-ids=* \
--no-wait
# Reimage VMSS instances
reimage-agents-parallel:
az vmss reimage --resource-group $(COMPUTE_GROUP) --name $(VMSS_NAME) --no-wait
reimage-agents-serial:
az vmss list-instances \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--query [].instanceId \
--output tsv \
| xargs -I{} az vmss reimage \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--instance-id {} \
--output table
chaos-monkey:
az vmss list-instances \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--query [].instanceId \
--output tsv \
| shuf \
| xargs -I{} az vmss restart \
--resource-group $(COMPUTE_GROUP) \
--name $(VMSS_NAME) \
--instance-id {} \
--output table
# List endpoints
list-endpoints:
az network public-ip list \
--resource-group $(COMPUTE_GROUP) \
--query '[].{dnsSettings:dnsSettings.fqdn}' \
--output table