aws-fargate Questions
2
I have a ecs cluster and have some services running, and I needed to update the container port from 80 to 7001.
So I tried creating a new revision of the task definition but I get the below error:
...
Roswell asked 21/3, 2021 at 14:54
2
Solved
I have:
Fargate container
Private ECR repository
They're in the same account and region. Will AWS charge me for pulling images?
ECR pricing page says Data transferred between Amazon Elastic Conta...
Escape asked 8/3, 2021 at 17:25
5
I am trying to access ".env" file stored in S3 bucket from Fargate ECS tasks using the Environment Files configuration (S3 ARN) under Container Definition.
But ECS task is failing with St...
Fidelafidelas asked 14/12, 2020 at 10:55
4
This is an odd one. I have an ECS service using Fargate v1.4 in a private subnet. Since the tasks don't have access to the Internet, I had to configure VPC Endpoints so that tasks could load what t...
Marylandmarylee asked 31/5, 2020 at 1:2
8
I'm trying to setup a scheduled task with ECS Fargate but I cannot figure out why it is not running. I can confirm the task works correctly using RunTask but when I try to trigger it on a schedule ...
Multiped asked 25/12, 2017 at 21:13
2
According to Docker official website: https://docs.docker.com/engine/security/rootless/ it's possible to run Docker Daemon rootless-ly (without root access, no --privileged flag).
However I'm convi...
Lexical asked 17/7, 2020 at 21:5
2
Solved
I have a Node.js app running on ECS/Fargate. I want to set some environment variables, and from what I've read, this should be done in the Task definition. However, there does not seem to be any wa...
Beckybecloud asked 31/3, 2021 at 19:11
3
Solved
I have a health check defined for my ECS Fargate Service, it works when I test locally and works with Fargate v 1.3.0.
But when I change to Fargate Platform version 1.4.0 it always turns unhealthy....
Stanhope asked 15/4, 2020 at 6:10
4
Solved
I am running a Docker image on an ECS cluster to shell into it and run some simple tests. However when I run this:
aws ecs execute-command \
--cluster MyEcsCluster \
--task $ECS_TASK_ARN \
--con...
Expressivity asked 20/9, 2021 at 21:41
1
there is a simple way to copy files from local host to AWS ECS Fargate container?
Like Docker cp
docker cp :/file/path/in/container/file /host/local/path/file ?
I've found some workarounds like:
p...
Fraenum asked 17/9, 2021 at 10:11
3
At a conceptual level, I understand Docker & Kubernetes. I am trying out some things on AWS ECS, but these are not working for me.
I have been trying to create and deploy an ECS service based o...
Detector asked 2/3, 2023 at 8:50
33
I am trying to run a private repository on aws-ecs-fargate-1.4.0 platform.
For private repository authentication, I have followed the docs and it was working well.
Somehow after updating existing...
Bullnecked asked 17/4, 2020 at 6:5
3
Solved
I have a small problem. I am starting a Task (docker container) via the JAVA SDK. This is working great.
But now I want to grab the public IP via the SDK and don't know how.
here is my existing ...
Cabinetwork asked 23/10, 2018 at 9:54
2
I currently have a Fargate cluster that contains a service. This service always has 1 task running and is polling from SQS. The service will scale the number of tasks if SQS grows/shrinks. However,...
Anemometry asked 22/4, 2020 at 6:4
2
Solved
I'm kicking off a single ECS Fargate task with a command such as:
aws ecs run-task --cluster Fargate \
--task-definition $ECR_REPO-run-setup
--overrides file:///tmp/ecs-overrides-db-migrate.txt...
Condolence asked 21/3, 2018 at 19:13
3
I'm using ECS Fargate to host containers in a service. The service is tied to the target group in order to load balance.
https://docs.aws.amazon.com/AmazonECS/latest/developerguide/fargate-task-sto...
Jilljillana asked 29/4, 2021 at 19:9
3
Solved
Similar to this question How to get Task ID from within ECS container? but I want to get the TaskId for my Fargate task. How can you do this? Like others I want this for logging information.
I'm ru...
Caliper asked 20/7, 2020 at 6:46
3
I am trying to migrate a set of microservices from Docker Swarm, to AWS ECS using Fargate.
I have created an ECS cluster. Moreover, I have initialized repositories using the ECR, each of which con...
Polled asked 10/1, 2019 at 15:13
2
I have set up a Docker container running on port 5566 with a small Django application. The Docker image is uploaded into the ECR and later used by Fargate container(s).
I have set up an ECS cluster...
Schaal asked 31/5, 2019 at 7:29
5
I run aws fargate containers, which are launched using ecs-cli like so:
ecs-cli configure --cluster ${cluster_name} --default-launch-type FARGATE --region ${AWS_REGION} --config-name ${config_name}...
Aim asked 18/11, 2021 at 15:59
4
What is the easiest way to provide one or several external configuration file(s) to an app running as an AWS Fargate task?
The files cannot be part of the Docker image because they depend on the s...
Emitter asked 8/12, 2020 at 17:37
3
Solved
I was trying to get answers on my question here and here, but I understood that I need to know specifically Fargate implementation of vCPUs. So my question is:
If I allocate 4 vCPUs to my task do...
Bawdy asked 30/8, 2018 at 7:0
4
Solved
I have this task definition code, which has a problem:
{
"family": "ikg-api",
"taskRoleArn": "",
"executionRoleArn": "arn:aws:iam::913xxxx371:role/ecsTaskExecutionRole",
"networkMode": "awsvpc...
Siren asked 2/8, 2019 at 6:52
4
Solved
I am deploying services to ECS fargate behind ALB. During deployment, ALB sends health check to the service and if there are 3 consecutive failure health checks, ECS will destroy the new deployed s...
Handedness asked 24/12, 2019 at 2:1
16
Solved
I am using cloud formation template to build the infrastructure (ECS Fargate cluster). Template executed successfully and stack has been created successfully. However, task has failed with the foll...
Mulcahy asked 3/2, 2019 at 13:28
1 Next >
© 2022 - 2025 — McMap. All rights reserved.