All Questions
Tagged with aws-fargate amazon-ecs
36
questions
0
votes
1
answer
48
views
Cannot access the ALB URL for N8N, but my ECS Service is running fine, reaching steady state without issues
I'm trying to deploy and configure N8N in my AWS account. Now, I'm facing two challenges since but it was somehow tricky to run and configure its Docker image. However, I'll focus on the greatest one, ...
0
votes
0
answers
44
views
Change AssignPublicIp setting to ECS service deployed with CodeDeploy deployment controller
I have an ECS Fargate service deployed through an AWS CloudFormation stack with NetworkConfiguration.AwsvpcConfiguration.AssignPublicIp set to ENABLED. I want to change that value to DISABLED.
However,...
1
vote
1
answer
94
views
NAT gateway costs on AWS
I have a django app on AWS using ECS Fargate behind a VPC. A NAT gateway is required with this setup, but most of the costs are from the NAT gateway.
How I can reduce this? My docker image is 600 MB. ...
0
votes
0
answers
181
views
FROM php:7.4-fpm-alpine app.dockerfile results in fastcgi error when adding sh file to run as an entrypoint
I am using AWS ECS Faragate to generate and deploy docker containers into tasks.
I'm using the docker image FROM php:7.4-fpm-alpine for my app container.
I have been working on a workaround for cron ...
1
vote
0
answers
120
views
AWS Batch on Fargate is not allocating the correct number of vCPUs
I have a web application offloading some resource-intensive tasks to AWS Batch, backed by Fargate.
It's a very simple setup - a single queue, a single job definition, and a single compute environment. ...
0
votes
0
answers
428
views
Understanding CPU Utilisation Graph for a task running AWS Fargate
I have a task defined with 0.5vCPU. It has two containers with 0.25vCPU
Can someone explain to me what the below CPU Utilization graph represents?
The above graph is from Health and Metrics section ...
2
votes
0
answers
794
views
Why can't my ECS Fargate cluster write to my mounted EFS volume, all deployed with Terraform?
I've got a Terraform deployment that deploys a Docker image into ECS Fargate. It attaches an EFS volume to the container. When I SSH into the container, I see the volume mounted, but I am unable to ...
0
votes
1
answer
346
views
Will aws elb address change over time?
I have created a load balancer pointing at my api instances. I got an automatically generated url which looks something like this:
xxx-xx-xxxxxxxxxx.us-east-2.elb.amazonaws.com
I want to connect it to ...
1
vote
1
answer
2k
views
How to pass arguments into scheduled task on AWS Fargate?
I have a docker container (derived from PHP-CLI) that may be launched like this locally:
docker run php-cli-container php public/index.php argument1 argument2
I uploaded the container to Amazon AWS ...
1
vote
2
answers
3k
views
How to make my ECS Task pull my ECR image
I am trying to create a ECS task and be able to access and pull from ECR, but I am getting an error. How can I resolve this issue?
Raw error:
Cannotpullcontainererror: pull image manifest has been ...
0
votes
1
answer
798
views
ECS/Fargate CPU peaks only to 60%
We have created an ECS/Fargate container with 2 VCPU and 4 GB RAM, running a NodeJS server in it. When we do the load testing using JMeter the VCPU reaches a maximum of 60% and flats out with the ...
1
vote
2
answers
861
views
How to configure service discovery in aws ecs using the new console
In the classic AWS console it was possible to configure service discovery. It looks like this has been dropped in the new console.
How does it then need to be done in the new console?
Thanks
1
vote
1
answer
1k
views
Fargate task from service with Public IP disabled can't download env file from S3
We have a Fargate service that should be exposed to the internet via a load balancer, and since for tests we had used so far the random Public IP of the task, we decided to disable the Public IP, so ...
0
votes
1
answer
713
views
AWS Fargate Load Balancer timing out
I'm setting up an AWS ECS/Fargate cluster/service/task with a load balancer for the first time.
I believe the task is good since I can go to the task's (public) IP directly in a browser and see the ...
1
vote
1
answer
2k
views
ECS restarts due to health_check failure when multiple other requests are slow to return
We noticed that our ECS Fargate backend services restart due to a health check response timeout:
(service our-site-com-stack-BackendApiServiceStack...) (port 8000) is unhealthy in (target-group arn:...
0
votes
0
answers
671
views
AWS Fargate is slow when calling system commands. How do I debug it and what can be wrong?
I've been running my PoC on Fargate without many problems. It's a Micronaut Java app with not much happening on its own. I'm using the smallest 256mb/0.25CPU Fargate deployment.
I'm running a simple ...
0
votes
1
answer
616
views
How to share directory with Fargate container
I have a fargate container running which needs access to files present on an EC2 instance. Both are in the same network and security groups do not restrict traffic.
I tried using sshfs as well as ...
0
votes
1
answer
608
views
ECS Fargate Network Interface with src/dest Check disabled
When creating an AWS ECS Fargate Service is there a way to set the generated Network Interface's Source/dest check field to false?
The service is set-up following the ECS Fargate getting started guide....
1
vote
1
answer
2k
views
AWS ECS Fargate, container to container communication
I'm having trouble exposing ports on my ECS Fargate containers.
I have applied port mapping on container level for my task definition, like so:
On the containers themselves, it looks like there is no ...
1
vote
1
answer
2k
views
Dockerized Laravel application with volume on AWS Fargate issue
this is my scenario, I have a Laravel 8 application that I'm trying to deploy using AWS ECS through AWS Fargate.
This is the useful part of my dockerfile:
### ... Previous composer and npm stages
...
0
votes
0
answers
472
views
How to migrate to Fargate from EC2 in ECS cluster?
I am planning to migrate to Fargate for autoscaling purposes. I already have task definitions for both my staging and production environments which are currently live. There's two ways I thought I can ...
0
votes
0
answers
644
views
Terminating AWS ECS services and tasks automatically
We have created a ECS cluster with Fargate and have created few tasks in service to be used in a CI/CD pipeline. Service has desired count of 1. So if we terminate any task, new task comes up ...
2
votes
1
answer
2k
views
AWS: How do I restrict deployment to ECS clusters using IAM
I have multiple Fargate clusters in a single AWS account. I wish to ensure that a given service account (used by the build pipeline) can only update Services within a given Fargate clusters.
The IAM ...
4
votes
2
answers
5k
views
Do I need an internal Load Balancer for my ECS Services?
I have an ECS cluster with 3 services(FARGATE), the 3 services are in private subnets. 1 is the web app that is publicly accessible through an Internet-facing Load Balancer and the 2 others are only ...
1
vote
1
answer
2k
views
AWS Network Load Balancer for Fargate tasks with end to end encryption
We currently have a AWS Fargate service running Nginx behind a AWS Application Load Balancer. In front of this, we also use Cloudflare (hence having Cloudflare origin certificate in ACM). Since the ...
2
votes
2
answers
2k
views
How to get the value of ECS_CONTAINER_METADATA_URI_V4 in AWS ECS container?
The question is pretty straightforward but a little background always could be helpful.
I need to get a container id from the container itself, and the value of it will be used as a logfile name.
...
5
votes
1
answer
7k
views
How to send HTTP requests between AWS ECS services
Currently, I'm trying to figure out how to configure communication between ECS services.
I'm planning to have the following setup:
Backend service
Fronted service
One application load balancer
I ...
0
votes
1
answer
2k
views
How set a fixed private IP for ECS containers?
I have a Task Definition called kafka-zookeeper, it has an Apache Kafka broker and a Zookeeper node in it. Those containers need to communicate with each other (that's easy) and with the kafka and ...
0
votes
1
answer
3k
views
Can't retrieve instance metadata on AWS Fargate tasks
I have a docker compose configuration that I'm deploying in an ECS Fargate cluster. The tasks are configured with assign_public_ip: ENABLED, and they seem to be getting a public IP, but I'm struggling ...
0
votes
1
answer
208
views
Troubleshooting fargate autoscaling
I've set up an AWS Fargate cluster to run a service and autoscale its tasks based on the SQS queue. All great so far. The service has got a desired tasks of 1, but then it never actually launches the ...
2
votes
1
answer
5k
views
Does Amazon manage time synchronization on ECS/Fargate containers?
I'm trying to use NTP to synchronize local time in ECS containers using the ntpdate command, but it gives me this error:
ntpdate[770]: Can't adjust the time of day: Operation not permitted
...
0
votes
1
answer
744
views
Unable to set up an Envoy Front Proxy on Amazon ECS
I am trying to set up an envoy front proxy using envoy sidecar containers on Amazon Elastic Container Service (ECS) referring to this link.
The envoy sidecar configuration is :
#service-envoy.yaml
...
0
votes
2
answers
2k
views
Network Load Balancer to Fargate/ECS Cluster - how to map multiple ports/target groups to one service?
Here is my setup:
Route53 Alias Record -> Network Load Balancer -> Fargate/ECS Cluster
The containers in the cluster have their own TLS certificates and have ports 80 and 443 open. The http server ...
2
votes
0
answers
2k
views
AWS Application Load Balancer 502 Bad Gateway
I am using AWS ECS Fargate and have an application load balancer to forward all the connections to the correct instance.
I did already manage to get up a cluster and a service up and running ...
0
votes
2
answers
4k
views
Is persisting data in Fargate containers recommended?
My application - a Postgres/Nginx/Django application powered by docker-compose. 3 separate containers.
My production setup - Nginx/Django containers hosted on Amazon ECR. Deployment to a single ...
7
votes
2
answers
2k
views
Is Fargate a good fit for independent containers that have low resource utilization?
I'm new to docker and ECS, so I might not use the right terms. Please let me know if I need to clarify.
My Scenario: I have a number of independent containers. Each container represents a web site. ...