Skip to content

Commit

Permalink
feat: Enable ingress proxy protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
Endre Kadas committed Oct 30, 2024
1 parent 0eedbc1 commit 5284c84
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions add-ons/runtime/ingress_nginx.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ resource "helm_release" "ingress_nginx" {
}

set {
name = "controller.config.use-forwarded-headers"
value = true
name = "controller.config.use-proxy-protocol"
value = "true"
}

set {
name = "controller.service.annotations.service\\.beta\\.kubernetes\\.io/do-loadbalancer-enable-proxy-protocol"
value = "true"
}
}

0 comments on commit 5284c84

Please sign in to comment.