Skip to content

Commit

Permalink
Add proxy protocol option in the service annotations (#23)
Browse files Browse the repository at this point in the history
* Add proxy protocol option in k8s svc

* Fix quotas

* Add changelog entry
  • Loading branch information
pipo02mix committed Jan 29, 2020
1 parent b4fd8b2 commit 5c50738
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project's packages adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


## [v1.2.1] 2020-01-30

### Changed

- Support proxy protocol for AWS. ([#23](https://github.com/giantswarm/nginx-ingress-controller-app/pull/23))

## [v1.2.0] 2020-01-21

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ metadata:
{{ if eq .Values.controller.service.type "internal" }}
service.beta.kubernetes.io/aws-load-balancer-internal: 0.0.0.0/0
{{ end }}
{{ if index .Values.configmap "use-proxy-protocol" }}
service.beta.kubernetes.io/aws-load-balancer-proxy-protocol: '*'
{{ end }}
service.beta.kubernetes.io/aws-load-balancer-cross-zone-load-balancing-enabled: "true"
name: {{ .Values.controller.name }}
namespace: {{ .Release.Namespace }}
Expand Down

0 comments on commit 5c50738

Please sign in to comment.