airbnb/caravel

View on GitHub
.github/workflows/ecs-task-definition.json

Summary

Maintainability
Test Coverage
{
    "containerDefinitions": [
        {
            "name": "superset-ci",
            "image": "apache/superset:latest",
            "cpu": 0,
            "links": [],
            "portMappings": [
                {
                    "containerPort": 8080,
                    "hostPort": 8080,
                    "protocol": "tcp"
                }
            ],
            "essential": true,
            "entryPoint": [],
            "command": [],
            "environment": [
                {
                    "name": "SUPERSET_LOAD_EXAMPLES",
                    "value": "yes"
                },
                {
                    "name": "SUPERSET_PORT",
                    "value": "8080"
                },
                {
                    "name": "SUPERSET_SECRET_KEY",
                    "value": "super-secret-for-ephemerals"
                },
                {
                    "name": "TALISMAN_ENABLED",
                    "value": "False"
                }
            ],
            "mountPoints": [],
            "volumesFrom": [],
            "logConfiguration": {
                "logDriver": "awslogs",
                "options": {
                    "awslogs-group": "/ecs/superset-ci",
                    "awslogs-region": "us-west-2",
                    "awslogs-stream-prefix": "ecs"
                }
            }
        }
    ],
    "family": "superset-ci",
    "taskRoleArn": "ecsTaskExecutionRole",
    "executionRoleArn": "ecsTaskExecutionRole",
    "networkMode": "awsvpc",
    "volumes": [],
    "placementConstraints": [],
    "requiresCompatibilities": [
        "FARGATE"
    ],
    "cpu": "512",
    "memory": "1024"
}