Does anyone has obtained make percona/pmm-server:latest work on ECS Fargate? I’ve tried in several ways but it has been impossible make it run for me, this is an example of my task definition protecting the security riskable information:
{
“family”: “pmm-server”,
“networkMode”: “awsvpc”,
“executionRoleArn”: “arn:aws:iam:role/ecsTaskExecutionRole”,
“containerDefinitions”: [
{
“name”: “pmm-server”,
“image”: “percona/pmm-server:latest”,
“memory”: 2048,
“cpu”: 1024,
“essential”: true,
“portMappings”: [
{
“containerPort”: 443,
“hostPort”: 443,
“protocol”: “tcp”
}
],
“mountPoints”: [
{
“sourceVolume”: “pmm-data”,
“containerPath”: “/srv”
}
],
“volumesFrom”: ,
“systemControls”: ,
“logConfiguration”: {
“logDriver”: “awslogs”,
“options”: {
“awslogs-group”: “/ecs/pmm-server”,
“awslogs-region”: “us-west-2”,
“awslogs-stream-prefix”: “ecs”
}
}
}
],
“volumes”: [
{
“name”: “pmm-data”,
“efsVolumeConfiguration”: {
“fileSystemId”: “fs-ID”,
“transitEncryption”: “ENABLED”,
“rootDirectory”: “/”
}
}
],
“requiresCompatibilities”: [“FARGATE”],
“cpu”: “1024”,
“memory”: “2048”
}
Any idea? Thank you so much in advance!
Regards.