This repository has been archived by the owner on Sep 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
SpotFleet CloudFormation #69
Merged
+420
−0
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
9284a4d
[CloudFormation] Add ApiGateway and StepFunctions for webhook endpoint
f009c38
[CloudFormation] Add RunEcsTaskFunction
3ad17c6
[CloudFormation] Add deploy script
d640683
set sample SpotFleetRequest for Ecs
selmertsx 28fffd0
[CloudFormation] set correct subnet to spot fleet instance
selmertsx e4cb0dc
[CloudFormation] set correct Instance Type to SpotFleet Request
selmertsx 0c162c4
[CloudFormation] set another container instance for spot fleet request
selmertsx c0084f1
[CloudFormation] set IAM Role for SpotFleet
selmertsx f32f655
[CloudFormation] set ManagedPolicyArns to FleetIAMRole
selmertsx 85486c9
[CloudFormation] parameterize SpotPrice and TargetCapacity in SpotFle…
selmertsx cc92b41
[CloudFormation] add NetworkInterface to EC2 ContainerInstances
selmertsx 56c3e83
[CloudFormation] fix service settings to IAM Role for SpotFleet Request
selmertsx 9438bba
[CloudFormation] set ManagedPolicyArns for FleetIAMRole
selmertsx 0225f65
[CloudFormation] remove Network Interfaces properties for spot fleet …
selmertsx 7656843
[CloudFormation] Parameterize instance type for SpotFleetRequest
selmertsx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## How to Deploy | ||
|
||
```bash | ||
# BUCKET_NAME is used for `aws cloudformation package` | ||
# STACK_NAME is used for `aws cloudformation deploy` | ||
$ BUCKET_NAME=bucket-name STACK_NAME=stack-name bin/deploy | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
if [ -z "$BUCKET_NAME" ]; then | ||
echo 'BUCKET_NAME is required' | ||
exit 1 | ||
fi | ||
|
||
if [ -z "$STACK_NAME" ]; then | ||
echo 'STACK_NAME is required' | ||
exit 1 | ||
fi | ||
|
||
TEMPLATE_FILE=cloudformation.yml | ||
|
||
# Move project root | ||
cd "$(dirname "$(perl -e 'use Cwd "abs_path";print abs_path(shift)' "$0")")/.." || exit 1 | ||
|
||
sh -c 'cd ./functions/RunEcsTask && npm install && npm run build && cp -rf ./node_modules ./built/' | ||
|
||
mkdir -p ./built | ||
|
||
aws cloudformation package \ | ||
--template-file "$TEMPLATE_FILE" \ | ||
--output-template-file ./built/cloudformation.yml \ | ||
--s3-bucket "$BUCKET_NAME" | ||
|
||
aws cloudformation deploy \ | ||
--capabilities CAPABILITY_NAMED_IAM \ | ||
--template-file built/cloudformation.yml \ | ||
--stack-name "$STACK_NAME" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "run-ecs-task", | ||
"version": "0.0.1", | ||
"description": "Lambda function that to run ECS Task", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "tsc -p ./tsconfig.json", | ||
"clean": "rm -rf ./built" | ||
}, | ||
"author": "", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/speee/webapp-revieee" | ||
}, | ||
"devDependencies": { | ||
"@types/aws-lambda": "0.0.12", | ||
"@types/node": "^7.0.31", | ||
"aws-sdk": "^2.71.0", | ||
"tslint": "^5.4.3", | ||
"typescript": "^2.3.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { Callback, Context } from "aws-lambda"; | ||
import * as AWS from "aws-sdk"; | ||
|
||
const ecs = new AWS.ECS(); | ||
|
||
export function handler(event: any, context: Context, callback: Callback) { | ||
const envBranch: AWS.ECS.KeyValuePair = { | ||
name: "BRANCH", | ||
value: "master", | ||
}; | ||
const containerOverride: AWS.ECS.ContainerOverride = { | ||
name: "main", | ||
environment: [envBranch], | ||
}; | ||
const taskOverride: AWS.ECS.TaskOverride = { | ||
containerOverrides: [containerOverride], | ||
}; | ||
const params: AWS.ECS.RunTaskRequest = { | ||
cluster: "revieee", | ||
taskDefinition: "arn:aws:ecs:ap-northeast-1:951787653356:task-definition/im-ieul-core:3", | ||
overrides: taskOverride, | ||
}; | ||
|
||
(async () => { | ||
return await ecs.runTask(params).promise(); | ||
})().then((result: AWS.ECS.RunTaskResponse) => { | ||
console.log(result.tasks); | ||
callback(null, result.tasks[0].taskArn); | ||
}).catch((err: AWS.AWSError) => { | ||
callback(err); | ||
}); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pataiji
来週レビューお願いします 🙏
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
差分、見やすい様に lambda-endpointをmerge先に向けています。
コードに問題無ければ masterにmergeします。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pataiji
指摘して貰った点修正したので、今日、暇な時にレビューお願いします!!