-->

DEVOPSZONES

  • Recent blogs

    FARGATE: Error when trying to create task definition ClientException: No Fargate configuration exists for given values

    FARGATE: Error when trying to create task definition ClientException: No Fargate configuration exists for given values

    AWS Fargate Logo

    Error: ClientException: No Fargate configuration exists for given values

    My grafana Fargate Configuration for ECS task look like this. 
    AWS Fargate Grafana
    Solution:

     We do not have a supported FARGATE cpu & memory values for the above configuration. We need to change the values with a supported value for FARGATE. Supported task CPU and memory values for FARGATE tasks are as follows.
     
    CPU valueMemory value (MiB)
    256 (.25 vCPU)512 (0.5GB), 1024 (1GB), 2048 (2GB)
    512 (.5 vCPU)1024 (1GB), 2048 (2GB), 3072 (3GB), 4096 (4GB)
    1024 (1 vCPU)2048 (2GB), 3072 (3GB), 4096 (4GB), 5120 (5GB), 6144 (6GB), 7168 (7GB), 8192 (8GB)
    2048 (2 vCPU)Between 4096 (4GB) and 16384 (16GB) in increments of 1024 (1GB)
    4096 (4 vCPU)Between 8192 (8GB) and 30720 (30GB) in increments of 1024 (1GB)

     

    No comments