forked from finos/htc-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloud9-htc-grid.yaml
358 lines (338 loc) · 13.8 KB
/
cloud9-htc-grid.yaml
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
---
AWSTemplateFormatVersion: '2010-09-09'
Description: AWS CloudFormation template to create a Cloud9 environment and prepare the HTC-Grid setup
Metadata:
Author:
Description: Carlos Rueda <ruecarlo@amazon.com>
License:
Description: 'Copyright 2021 Amazon.com, Inc. and its affiliates. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.nse.'
Parameters:
C9InstanceType:
Description: Cloud9 instance type
Type: String
Default: m5.large
AllowedValues:
- t3.small
- t3.medium
- m4.large
- m5.large
ConstraintDescription: Must be a valid Cloud9 instance type
C9KubectlVersion:
Description: kubectl Version to install on Cloud9
Type: String
Default: v1.21.0
ConstraintDescription: Must be a valid kubectl version
C9TerraformVersion:
Description: Terraform Version to install on Cloud9
Type: String
Default: 1.0.0
ConstraintDescription: Must be a valid terraform version
C9EKSctlVersion:
Description: Cloud9 instance eksctl version
Type: String
Default: 0.43.0
ConstraintDescription: Must be a valid eksctl version
C9HelmVersion:
Description: Helm Version to install on Cloud9
Type: String
Default: v3.5.3
ConstraintDescription: Must be a valid helm version
#Used only by Event Engine, if you are self-deploying the stack leave the default value to NONE
EETeamRoleArn:
Description: "ARN of the Team Role"
Default: NONE
Type: String
ConstraintDescription: This is ONLY used Event Engine, dont change this if you are self-deploying the stack
Conditions:
NotEventEngine: !Equals [!Ref EETeamRoleArn, NONE]
Resources:
################## PERMISSIONS AND ROLES #################
C9Role:
Type: AWS::IAM::Role
Condition: NotEventEngine
Properties:
Tags:
- Key: Environment
Value: AWS Example
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- ec2.amazonaws.com
- ssm.amazonaws.com
Action:
- sts:AssumeRole
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AdministratorAccess
Path: "/"
C9LambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Path: "/"
Policies:
- PolicyName:
Fn::Join:
- ''
- - C9LambdaPolicy-
- Ref: AWS::Region
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: arn:aws:logs:*:*:*
- Effect: Allow
Action:
- cloudformation:DescribeStacks
- cloudformation:DescribeStackEvents
- cloudformation:DescribeStackResource
- cloudformation:DescribeStackResources
- ec2:DescribeInstances
- ec2:DescribeVolumes
- ec2:AssociateIamInstanceProfile
- ec2:ModifyInstanceAttribute
- ec2:ModifyVolume
- ec2:ReplaceIamInstanceProfileAssociation
- iam:ListInstanceProfiles
- iam:PassRole
Resource: "*"
################## LAMBDA BOOTSTRAP FUNCTION ################
C9BootstrapInstanceLambda:
Description: Bootstrap Cloud9 instance
Type: Custom::C9BootstrapInstanceLambda
DependsOn:
- C9BootstrapInstanceLambdaFunction
- C9Instance
- C9LambdaExecutionRole
Properties:
Tags:
- Key: Environment
Value: AWS Example
ServiceToken:
Fn::GetAtt:
- C9BootstrapInstanceLambdaFunction
- Arn
REGION:
Ref: AWS::Region
StackName:
Ref: AWS::StackName
EnvironmentId:
Ref: C9Instance
LabIdeInstanceProfileArn: !If [ NotEventEngine, 'not_event_engine', !Sub 'arn:aws:iam::${AWS::AccountId}:instance-profile/TeamRoleInstanceProfile' ]
C9BootstrapInstanceLambdaFunction:
Type: AWS::Lambda::Function
Properties:
Tags:
- Key: Environment
Value: AWS Example
Handler: index.lambda_handler
Role:
Fn::GetAtt:
- C9LambdaExecutionRole
- Arn
Runtime: python3.7
MemorySize: 256
Timeout: '600'
Code:
ZipFile: |
from __future__ import print_function
import boto3
import json
import os
import time
import traceback
import cfnresponse
def lambda_handler(event, context):
print(f'event: {event}')
print(f'context: {context}')
responseData = {}
if event['RequestType'] == 'Delete':
try:
responseData = {'Success': 'Finished cleanup'}
cfnresponse.send(event, context, cfnresponse.SUCCESS, responseData, 'CustomResourcePhysicalID')
except Exception as e:
responseData = {'Error': traceback.format_exc(e)}
cfnresponse.send(event, context, cfnresponse.FAILED, responseData, 'CustomResourcePhysicalID')
if event['RequestType'] == 'Create':
try:
# Open AWS clients
ec2 = boto3.client('ec2')
# Get the InstanceId from Cloud9 IDE
print('tag:aws:cloud9:environment : {}'.format(event['ResourceProperties']['EnvironmentId']))
instance = ec2.describe_instances(Filters=[{'Name': 'tag:aws:cloud9:environment','Values': [event['ResourceProperties']['EnvironmentId']]}])['Reservations'][0]['Instances'][0]
print(f'instance: {instance}')
volume_id = instance['BlockDeviceMappings'][0]['Ebs']['VolumeId']
print(f'Volume Id {volume_id}')
ec2.modify_volume(VolumeId=volume_id, Size=100)
print('Changed Volume to 100GB')
# Create the IamInstanceProfile request object
iam_instance_profile = {
'Arn': event['ResourceProperties']['LabIdeInstanceProfileArn']
}
print(f'iam_instance_profile: {iam_instance_profile}')
# Wait for Instance to become ready before adding Role
instance_state = instance['State']['Name']
while instance_state != 'running':
time.sleep(5)
instance_state = ec2.describe_instances(InstanceIds=[instance['InstanceId']])
print(f'waiting for the instance state to be "running", current instance_state: {instance_state}')
# attach instance profile
if iam_instance_profile['Arn'] != "not_event_engine":
print(f'Instance is running , about to associate iam_instance_profile: {iam_instance_profile}')
response = ec2.associate_iam_instance_profile(IamInstanceProfile=iam_instance_profile, InstanceId=instance['InstanceId'])
print(f'response - associate_iam_instance_profile: {response}')
responseData = {'Success': 'Started bootstrapping for instance: '+instance['InstanceId']}
cfnresponse.send(event, context, cfnresponse.SUCCESS, responseData, 'CustomResourcePhysicalID')
except Exception as e:
responseData = {'Error': traceback.format_exc(e)}
cfnresponse.send(event, context, cfnresponse.FAILED, responseData, 'CustomResourcePhysicalID')
################## SSM BOOTSRAP HANDLER ###############
C9OutputBucket:
Type: AWS::S3::Bucket
DeletionPolicy: Delete
C9SSMDocument:
Type: AWS::SSM::Document
Properties:
Tags:
- Key: Environment
Value: AWS Example
Content: Yaml
DocumentType: Command
Content:
schemaVersion: '2.2'
description: Bootstrap Cloud9 Instance
mainSteps:
- action: aws:runShellScript
name: C9bootstrap
inputs:
runCommand:
- "#!/bin/bash"
- date
- . /home/ec2-user/.bashrc
- whoami
- !Sub 'echo "export KUBECTL_VERSION=${C9KubectlVersion}"'
- sudo -H -u ec2-user aws sts get-caller-identity
- echo '=== INSTALL kubectl ==='
- !Sub 'export KUBECTL_VERSION=${C9KubectlVersion}'
- sudo curl --silent --location -o /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl
- sudo chmod +x /usr/local/bin/kubectl
- echo '=== Install JQ and envsubst ==='
- sudo yum -y install jq gettext unzip
- echo '=== Update to the latest AWS CLI ==='
- sudo -H -u ec2-user aws --version
- curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
- unzip awscliv2.zip
- sudo ./aws/install
- . /home/ec2-user/.bash_profile
- sudo -H -u ec2-user aws --version
- echo '=== setup AWS configs ==='
- rm -vf /home/ec2-user/.aws/credentials
- export ACCOUNT_ID=$(aws sts get-caller-identity --output text --query Account)
- export AWS_REGION=$(curl -s 169.254.169.254/latest/dynamic/instance-identity/document | jq -r '.region')
- echo "export ACCOUNT_ID=${ACCOUNT_ID}" >> /home/ec2-user/.bash_profile
- echo "export AWS_REGION=${AWS_REGION}" >> /home/ec2-user/.bash_profile
- sudo -H -u ec2-user aws configure set default.region ${AWS_REGION}
- sudo -H -u ec2-user aws configure get default.region
- sudo -H -u ec2-user aws sts get-caller-identity
- echo '=== Install EKSCTL ==='
- !Sub 'export EKSCTL_VERSION=${C9EKSctlVersion}'
- curl --silent --location "https://github.com/weaveworks/eksctl/releases/download/${EKSCTL_VERSION}/eksctl_Linux_amd64.tar.gz" | tar xz -C /tmp
- sudo mv -v /tmp/eksctl /usr/local/bin
- echo '=== Install Terraform ==='
- !Sub 'export TERRAFORM_VERSION=${C9TerraformVersion}'
- curl --silent --location -o /tmp/terraform.zip "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_386.zip"
- unzip /tmp/terraform.zip -d /tmp/terraform
- sudo chmod +x /tmp/terraform/terraform
- sudo mv -v /tmp/terraform/terraform /usr/local/bin/terraform
- echo '=== Install HELM ==='
- !Sub 'export HELM_VERSION=${C9HelmVersion}'
- mkdir -p /tmp/helm
- curl --silent --location -o /tmp/helm.tar.gz "https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz"
- tar -zxf /tmp/helm.tar.gz -C /tmp/helm/
- sudo chmod +x /tmp/helm/linux-amd64/helm
- sudo cp /tmp/helm/linux-amd64/helm /usr/local/bin/
- echo '=== Increasing Volume Capacity ==='
- sudo growpart /dev/xvda 1
- sudo resize2fs $(df -h |awk '/^\/dev/{print $1}')
- echo "=== Downloading HTC-Grid project ==="
- curl --silent --location -o /home/ec2-user/environment/aws-htc-grid.tar.gz "https://github.com/awslabs/aws-htc-grid/archive/refs/tags/v0.3.4.tar.gz"
- cd /home/ec2-user/environment; tar xzvf aws-htc-grid.tar.gz
- mv aws-htc-grid-0.3.4/ aws-htc-grid
- sudo chown -R 501:501 /home/ec2-user/environment/
C9BootstrapAssociation:
Type: AWS::SSM::Association
DependsOn:
- C9OutputBucket
Properties:
Name: !Ref C9SSMDocument
OutputLocation:
S3Location:
OutputS3BucketName: !Ref C9OutputBucket
OutputS3KeyPrefix: bootstrapoutput
Targets:
- Key: tag:SSMBootstrap
Values:
- Active
################## INSTANCE #####################
C9InstanceProfile:
Type: AWS::IAM::InstanceProfile
Condition: NotEventEngine
Properties:
Path: "/"
Roles:
- Ref: C9Role
C9Instance:
Description: "-"
DependsOn: C9BootstrapAssociation
Type: AWS::Cloud9::EnvironmentEC2
Properties:
Description: AWS Cloud9 instance for Examples
AutomaticStopTimeMinutes: 3600
InstanceType:
Ref: C9InstanceType
Name:
Ref: AWS::StackName
# OwnerArn: !Sub 'arn:aws:sts::${AWS::AccountId}:assumed-role/TeamRole/MasterKey'
OwnerArn: !If [NotEventEngine , !Ref AWS::NoValue , !Sub 'arn:aws:sts::${AWS::AccountId}:assumed-role/TeamRole/MasterKey']
Tags:
-
Key: SSMBootstrap
Value: Active
-
Key: Environment
Value:
Ref: AWS::StackName
Outputs:
Cloud9IDE:
Value:
Fn::Join:
- ''
- - https://
- Ref: AWS::Region
- ".console.aws.amazon.com/cloud9/ide/"
- Ref: C9Instance
- "?region="
- Ref: AWS::Region