Changelog: * Upgraded CDK version to support EFS usage * Upgraded Fargate PlatformVersion to support EFS mounts * Refacored RDS contruct as per new CDK * Created a new LogGroup for OnDemand DagTasks * Added TAG for stack, to track resources belonging to this setup * Updated sample DAG to utilize EFS. Tasks Odd and Even will publish to EFS and Numbers will read from EFS * Now you can see logs from OnDemand tasks on Airflow UI, once task run finishes
32 lines
752 B
JSON
32 lines
752 B
JSON
{
|
|
"name": "airflow-on-fargate",
|
|
"version": "1.0.0",
|
|
"description": "Running an application load balanced Airflow on Fargate",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc -w",
|
|
"cdk": "cdk"
|
|
},
|
|
"author": {
|
|
"name": "Amazon Web Services",
|
|
"url": "https://aws.amazon.com",
|
|
"organization": true
|
|
},
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/node": "^8.10.38",
|
|
"typescript": "~3.7.2"
|
|
},
|
|
"dependencies": {
|
|
"@aws-cdk/aws-ec2": "1.76.0",
|
|
"@aws-cdk/aws-ecs": "1.76.0",
|
|
"@aws-cdk/aws-ecs-patterns": "1.76.0",
|
|
"@aws-cdk/aws-ecr-assets": "1.76.0",
|
|
"@aws-cdk/aws-rds": "1.76.0",
|
|
"@aws-cdk/core": "1.76.0",
|
|
"@types/uuid": "8.3.0",
|
|
"uuid": "^8.3.0"
|
|
}
|
|
}
|