Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Aws-elb health check failing at 302 code

Hi i created ALB listener 443 and target group instance on 7070 port (not-ssl)

I can access instanceip:7070 without problem , but with https://elb-dns-name not able to access.. instance health check also failed with 302 code

ALB listener port https and instance is http protocol ,

when i browse with https://dns-name it redirecting to http://elb-dns-name

like image 201
Ashok Reddy Avatar asked Mar 20 '18 16:03

Ashok Reddy


2 Answers

you get 302 when performing URL redirection, any ELB Health check will look for success code 200 for the health check to pass. In ALB, this can be configured under health check in the ELB console.

To modify the health check settings of a target group using the console

  1. Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/.
  2. On the navigation pane, under LOAD BALANCING, choose Target Groups. Select the target group.
  3. On the Health checks tab, choose Edit.
  4. On the Edit target group page, modify the setting Success Codes to 302 or as needed, and then choose Save.

enter image description here

like image 125
Sudharsan Sivasankaran Avatar answered Sep 23 '22 22:09

Sudharsan Sivasankaran


add this annotation in your ingress controller it will modify the success code and nodes will be in healthy state.

alb.ingress.kubernetes.io/success-codes: 200,404,301,302
like image 28
ASHUTOSH TEKNUR Avatar answered Sep 22 '22 22:09

ASHUTOSH TEKNUR