-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror-eks.yml
498 lines (466 loc) · 15.5 KB
/
error-eks.yml
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
---
AWSTemplateFormatVersion: '2010-09-09'
Description: MU environment containing an EKS cluster and instances for running containers
Parameters:
Namespace:
Type: String
Description: Namespace for stack prefixes
EnvironmentName:
Type: String
Description: Name of environment used for resource namespace
EksServiceRoleArn:
Type: String
Description: ARN of IAM role for EKS service to use
EC2InstanceProfileArn:
Type: String
Description: ARN of instance profile for EC2 instance to assume
InstanceType:
Type: String
Description: Instance type to use.
Default: t2.medium
BootstrapArguments:
Description: Arguments to pass to the bootstrap script. See files/bootstrap.sh in https://github.com/awslabs/amazon-eks-ami
Default: ""
Type: String
MinSize:
Type: Number
Default: '1'
Description: Minimum number of instances that can be launched in your EKS cluster
DesiredCapacity:
Type: Number
Default: '1'
Description: Number of instances to launch in your EKS cluster
MaxSize:
Type: Number
Default: '3'
Description: Maximum number of instances that can be launched in your EKS cluster
KeyName:
Type: String
Description: KeyName to associate with worker instances. Leave blank to disable SSH access.
Default: ''
SshAllow:
Description: Subnet from which to allow SSH access.
Type: String
MinLength: '9'
MaxLength: '18'
AllowedPattern: "(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})\\.(\\d{1,3})/(\\d{1,2})"
ConstraintDescription: 'must be a valid CIDR block: x.x.x.x/x.'
ImageId:
Description: EKS AMI to launch
Type: String
Default: ''
ImageOsType:
Description: OS Type for EKS AMI
Type: String
Default: 'amazon'
AllowedValues:
- 'amazon'
InstanceSubnetIds:
Type: String
Description: Name of the value to import for the instance subnet ids
VpcId:
Type: String
Description: Name of the value to import for the VpcId
HttpProxy:
Type: String
Description: Proxy to use from EKS cluster instances (host:port)
Default: ''
LaunchType:
Type: String
Description: Launch type for services
Default: EC2
AllowedValues:
- EC2
- FARGATE
ExtraUserData:
Type: String
Description: Additional user data script
Default: ''
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: "Instance Configuration"
Parameters:
- InstanceType
- KeyName
- SshAllow
- Label:
default: "Auto Scaling Configuration"
Parameters:
- DesiredCapacity
- MaxSize
ParameterLabels:
InstanceType:
default: "Instance type to launch?"
KeyName:
default: "Key to grant SSH access (blank for none)?"
SshAllow:
default: "CIDR block to grant SSH access?"
DesiredCapacity:
default: "Desired EKS cluster instance count?"
MaxSize:
default: "Maximum EKS cluster instance count?"
Conditions:
HasKeyName:
"Fn::Not":
- "Fn::Equals":
- !Ref KeyName
- ''
HasLaunchTypeEC2:
"Fn::Equals":
- !Ref LaunchType
- 'EC2'
Resources:
EksCluster:
Type: AWS::EKS::Cluster
Properties:
Name: !Ref AWS::StackName
RoleArn: !Ref EksServiceRoleArn
ResourcesVpcConfig:
SecurityGroupIds:
- !GetAtt ClusterControlPlaneSecurityGroup.GroupId
SubnetIds:
Fn::Split:
- ","
- Fn::ImportValue: !Sub ${InstanceSubnetIds}
ClusterControlPlaneSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
VpcId:
Fn::ImportValue: !Sub ${VpcId}
GroupDescription: Control Plane Security Group
NodeSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: Security group for all nodes in the cluster
VpcId:
Fn::ImportValue: !Sub ${VpcId}
SecurityGroupIngress:
- IpProtocol: tcp
FromPort: '22'
ToPort: '22'
CidrIp: !Ref SshAllow
Tags:
- Key: !Sub "kubernetes.io/cluster/${AWS::StackName}"
Value: 'owned'
NodeSecurityGroupIngress:
Type: AWS::EC2::SecurityGroupIngress
DependsOn: NodeSecurityGroup
Properties:
Description: Allow node to communicate with each other
GroupId: !Ref NodeSecurityGroup
SourceSecurityGroupId: !Ref NodeSecurityGroup
IpProtocol: '-1'
FromPort: 0
ToPort: 65535
NodeSecurityGroupFromControlPlaneIngress:
Type: AWS::EC2::SecurityGroupIngress
DependsOn: NodeSecurityGroup
Properties:
Description: Allow worker Kubelets and pods to receive communication from the cluster control plane
GroupId: !Ref NodeSecurityGroup
SourceSecurityGroupId: !Ref ClusterControlPlaneSecurityGroup
IpProtocol: tcp
FromPort: 1025
ToPort: 65535
ControlPlaneEgressToNodeSecurityGroup:
Type: AWS::EC2::SecurityGroupEgress
DependsOn: NodeSecurityGroup
Properties:
Description: Allow the cluster control plane to communicate with worker Kubelet and pods
GroupId: !Ref ClusterControlPlaneSecurityGroup
DestinationSecurityGroupId: !Ref NodeSecurityGroup
IpProtocol: tcp
FromPort: 1025
ToPort: 65535
ClusterControlPlaneSecurityGroupIngress:
Type: AWS::EC2::SecurityGroupIngress
DependsOn: NodeSecurityGroup
Properties:
Description: Allow pods to communicate with the cluster API Server
GroupId: !Ref ClusterControlPlaneSecurityGroup
SourceSecurityGroupId: !Ref NodeSecurityGroup
IpProtocol: tcp
ToPort: 443
FromPort: 443
Node2NodeSecurityGroupIngress:
Type: AWS::EC2::SecurityGroupIngress
Properties:
IpProtocol: tcp
FromPort: '0'
ToPort: '65535'
SourceSecurityGroupId: !Ref NodeSecurityGroup
GroupId: !Ref NodeSecurityGroup
Node2InternetEgress:
Type: AWS::EC2::SecurityGroupEgress
Properties:
IpProtocol: 'tcp'
FromPort: '0'
ToPort: '65535'
CidrIp: '0.0.0.0/0'
GroupId: !Ref NodeSecurityGroup
Node2NodeRuleEgress:
Type: AWS::EC2::SecurityGroupEgress
Properties:
IpProtocol: '-1'
FromPort: '0'
ToPort: '65535'
SourceSecurityGroupId: !Ref NodeSecurityGroup
GroupId: !Ref NodeSecurityGroup
NodeSecurityGroupFromControlPlaneOn443Ingress:
Type: AWS::EC2::SecurityGroupIngress
DependsOn: NodeSecurityGroup
Properties:
Description: Allow pods running extension API servers on port 443 to receive communication from cluster control plane
GroupId: !Ref NodeSecurityGroup
SourceSecurityGroupId: !Ref ClusterControlPlaneSecurityGroup
IpProtocol: tcp
FromPort: 443
ToPort: 443
ControlPlaneEgressToNodeSecurityGroupOn443:
Type: AWS::EC2::SecurityGroupEgress
DependsOn: NodeSecurityGroup
Properties:
Description: Allow the cluster control plane to communicate with pods running extension API servers on port 443
GroupId: !Ref ClusterControlPlaneSecurityGroup
DestinationSecurityGroupId: !Ref NodeSecurityGroup
IpProtocol: tcp
FromPort: 443
ToPort: 443
EksAutoScalingGroup:
Condition: HasLaunchTypeEC2
Type: AWS::AutoScaling::AutoScalingGroup
DependsOn:
- ClusterLogGroup
- Node2InternetEgress
Properties:
VPCZoneIdentifier:
Fn::Split:
- ","
- Fn::ImportValue: !Sub ${InstanceSubnetIds}
LaunchConfigurationName: !Ref WorkerInstances
MinSize: !Ref MinSize
MaxSize: !Ref MaxSize
DesiredCapacity: !Ref DesiredCapacity
Tags:
- Key: Name
Value: !Ref AWS::StackName
PropagateAtLaunch: true
- Key: !Sub 'kubernetes.io/cluster/${AWS::StackName}'
Value: 'owned'
PropagateAtLaunch: 'true'
CreationPolicy:
ResourceSignal:
Timeout: PT15M
UpdatePolicy:
AutoScalingRollingUpdate:
MinInstancesInService: '1'
MaxBatchSize: '1'
PauseTime: PT15M
WaitOnResourceSignals: 'true'
InventoryAssociation:
Condition: HasLaunchTypeEC2
Type: AWS::SSM::Association
Properties:
AssociationName: 'Inventory-Association'
Name: 'AWS-GatherSoftwareInventory'
ScheduleExpression: 'rate(1 day)'
Parameters:
applications:
- Enabled
awsComponents:
- Enabled
customInventory:
- Enabled
instanceDetailedInformation:
- Enabled
networkConfig:
- Enabled
services:
- Enabled
windowsRoles:
- Enabled
windowsUpdates:
- Enabled
Targets:
- Key: tag:aws:autoscaling:groupName
Values: [!Ref EksAutoScalingGroup]
WorkerInstances:
Condition: HasLaunchTypeEC2
Type: AWS::AutoScaling::LaunchConfiguration
Metadata:
AWS::CloudFormation::Init:
configSets:
amazon:
- commonLinux
- amazonLinux
amazonLinux:
packages:
yum:
awslogs: []
files:
"/etc/awslogs/awscli.conf":
content: !Sub |
[plugins]
cwlogs = cwlogs
[default]
region = ${AWS::Region}
commands:
01_configure_ssm_agent:
command: !Sub |
#!/bin/bash
sudo yum install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_amd64/amazon-ssm-agent.rpm
services:
sysvinit:
awslogsd:
enabled: 'true'
ensureRunning: 'true'
files:
- "/etc/awslogs/awslogs.conf"
- "/etc/awslogs/etc/proxy.conf"
cfn-hup:
enabled: 'true'
ensureRunning: 'true'
files:
- "/etc/cfn/cfn-hup.conf"
- "/etc/cfn/hooks.d/cfn-auto-reloader.conf"
commonLinux:
files:
"/etc/cfn/cfn-hup.conf":
content: !Sub |
[main]
stack=${AWS::StackId}
region=${AWS::Region}
mode: '000400'
owner: root
group: root
"/etc/cfn/hooks.d/cfn-auto-reloader.conf":
content: !Sub |
[cfn-auto-reloader-hook]
triggers=post.update
path=Resources.WorkerInstances.Metadata.AWS::CloudFormation::Init
action=/opt/aws/bin/cfn-init -v --stack ${AWS::StackName} --resource WorkerInstances --configsets ${ImageOsType} --region ${AWS::Region}
runas=root
"/etc/awslogs/etc/proxy.conf":
content: !Sub |
HTTP_PROXY=http://${HttpProxy}/
HTTPS_PROXY=http://${HttpProxy}/
"/etc/awslogs/awscli.conf":
content: !Sub |
[plugins]
cwlogs = cwlogs
[default]
region = ${AWS::Region}
"/etc/awslogs/awslogs.conf":
content: !Sub |
[general]
state_file = /var/lib/awslogs/agent-state
[dmesg]
file = /var/log/dmesg
log_group_name = ${AWS::StackName}
log_stream_name = instance/dmesg/{instance_id}
[messages]
file = /var/log/messages
log_group_name = ${AWS::StackName}
log_stream_name = instance/messages/{instance_id}
datetime_format = %b %d %H:%M:%S
[docker]
file = /var/log/docker
log_group_name = ${AWS::StackName}
log_stream_name = instance/docker/{instance_id}
datetime_format = %Y-%m-%dT%H:%M:%S.%f
[cloud-init]
file = /var/log/cloud-init*
log_group_name = ${AWS::StackName}
log_stream_name = instance/cloud-init/{instance_id}
datetime_format = %Y-%m-%dT%H:%M:%SZ
[cfn-init]
file = /var/log/cfn-init*
log_group_name = ${AWS::StackName}
log_stream_name = instance/cfn-init/{instance_id}
datetime_format = %Y-%m-%d %H:%M:%S
[ssm]
file = /var/log/amazon/ssm/*
log_group_name = ${AWS::StackName}
log_stream_name = instance/ssm/{instance_id}
datetime_format = %Y-%m-%d %H:%M:%S
"/etc/kubernetes/pki/ca.enc":
content: !GetAtt EksCluster.CertificateAuthorityData
commands:
01_kube_config:
command: !Sub |
#!/bin/bash
set -o xtrace
/etc/eks/bootstrap.sh ${EksCluster} ${BootstrapArguments}
Properties:
ImageId: !Ref ImageId
SecurityGroups:
- !Ref NodeSecurityGroup
InstanceType: !Ref InstanceType
IamInstanceProfile: !Ref EC2InstanceProfileArn
KeyName:
Fn::If:
- HasKeyName
- !Ref KeyName
- !Ref "AWS::NoValue"
UserData:
Fn::Base64: !Sub |
Content-Type: multipart/mixed; boundary="==BOUNDARY=="
MIME-Version: 1.0
--==BOUNDARY==
Content-Type: text/text/x-shellscript; charset="us-ascii"
#!/bin/bash -xe
CFN_PROXY_ARGS=""
if [[ ! -z "${HttpProxy}" ]]; then
echo "Configuring HTTP_PROXY=${HttpProxy}"
# Set Yum HTTP proxy
if [ ! -f /var/lib/cloud/instance/sem/config_yum_http_proxy ]; then
echo "proxy=http://${HttpProxy}" >> /etc/yum.conf
echo "$$: $(date +%s.%N | cut -b1-13)" > /var/lib/cloud/instance/sem/config_yum_http_proxy
fi
# Set Docker HTTP proxy
if [ ! -f /var/lib/cloud/instance/sem/config_docker_http_proxy ]; then
echo "export HTTP_PROXY=http://${HttpProxy}/" >> /etc/sysconfig/docker
echo "export HTTPS_PROXY=http://${HttpProxy}/" >> /etc/sysconfig/docker
echo "$$: $(date +%s.%N | cut -b1-13)" > /var/lib/cloud/instance/sem/config_docker_http_proxy
service docker restart
fi
CFN_PROXY_ARGS="--http-proxy http://${HttpProxy} --https-proxy http://${HttpProxy}"
fi
${ExtraUserData}
/opt/aws/bin/cfn-init -v --stack ${AWS::StackName} --resource WorkerInstances --configsets ${ImageOsType} --region ${AWS::Region} $CFN_PROXY_ARGS
/opt/aws/bin/cfn-signal -e $? --stack ${AWS::StackName} --resource EksAutoScalingGroup --region ${AWS::Region} $CFN_PROXY_ARGS
--==BOUNDARY==
ClusterLogGroup:
Condition: HasLaunchTypeEC2
Type: AWS::Logs::LogGroup
DeletionPolicy: Delete
Properties:
LogGroupName: !Ref AWS::StackName
Outputs:
InstanceSubnetIds:
Value:
Fn::ImportValue: !Sub ${InstanceSubnetIds}
Description: Subnet Ids for the EKS cluster
Export:
Name: !Sub ${AWS::StackName}-InstanceSubnetIds
VpcId:
Value:
Fn::ImportValue: !Sub ${VpcId}
Description: Vpc Id for the environment
Export:
Name: !Sub ${AWS::StackName}-VpcId
EksClusterName:
Value: !Ref EksCluster
Description: Name of the EKS cluster.
InstanceSecurityGroup:
Value: !Ref NodeSecurityGroup
Description: Security Group ID for the microservice instances
Export:
Name: !Sub ${AWS::StackName}-InstanceSecurityGroup
LaunchType:
Value: !Ref LaunchType
Description: Launch type for services
Export:
Name: !Sub ${AWS::StackName}-LaunchType