Questions tagged [aws-elb]
Use this tag if a question is about aws-elb
10 questions
0 votes
0 answers
26 views
Reinstating AWS post suspension
I have an AWS account where Route53, Elastic Beanstalk (running php) Cloudfront S3 & RDS runs. Now that the account has been reinstatiated, and i have access to all services. But still email and ...
0 votes
1 answer
49 views
AWS elb vs google cloud for multiple small nodejs mini-apps deployment
Currently i use AWS ELB --single instances do deploy & manage multiple versions of the same nodejs app (over 10), which differ only by the configuration. Each app is running some endless process ...
3 votes
0 answers
428 views
How to deploy StatsD listening on UDP in kubernetes with external loadbalancer on AWS?
Our goal is to have StatsD deployed on k8s cluster running on AWS. Currently all existing applications using UDP to send StatsD metrics. As we understood from the kubernetes docs and tests we ...
1 vote
1 answer
4k views
AWS API Gateway as an http proxy to ALB
I have a setup of API Gateway proxying all the requests to my EC2 instances behind load balancer (ALB). But I want api endpoint to have a nice domain my-api.mydomain.com. I'm trying to accomplish that ...
2 votes
0 answers
652 views
ECS ELB Health Check Fails [closed]
The health check on our ECS cluster is failing on a service that is using an ELB Network Load Balancer on TCP port (gRPC running in docker alpine). The service is using dynamic port mapping for ...
3 votes
2 answers
242 views
Are Route 53 DNS records aliasing ELBs guaranteed for their lifetime?
Given a Route 53 DNS record aliasing a (classic) load balancer, and the potential for the load balancer ip to change: Is it possible for the DNS record to guarantee that the provided ips are valid ...
5 votes
2 answers
2k views
How to automate rolling upgrades for ec2 running linux behind elastic and/or application load balancer?
Would like to ask for recommendations on ready automated solutions or templates for rolling ec2 instance upgrade on AWS, requiring a reboot with ELB/ALB. Specifically required to perform the ...
2 votes
0 answers
784 views
How to deploy with AWS CodePipeline a multicontainer docker environment without dockerfile
I'm using simple docker-compose container images. Here's my docker-compose.yml version: '2' services: db: image: postgres:10.2 ports: - "5432:5432" ...
13 votes
1 answer
2k views
How to support releasing new versions of the code, running in parallel with the last stable release?
I have one service in production (on AWS), which follows the immutable server pattern. Its deployment looks like this: Create a new AMI with Packer. Create a new CloudFormation stack, starting with ...
7 votes
3 answers
3k views
How to ensure equitable distribution of SQS messages in a distributed systems setting?
I have multiple servers, each having a script polling an SQS queue [all polling the same queue]. So, is there any way I can ensure an equitable distribution of messages to all those clients [i.e. my ...