Skip to content

Commit ca19459

Browse files
committed
fix(helm): fix proxy protocol handling
1 parent 58166d4 commit ca19459

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

helm/ggbridge/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ A Helm chart for installing ggbridge
168168
| proxy.updateStrategy.rollingUpdate.maxSurge | int | `1` | |
169169
| proxy.updateStrategy.rollingUpdate.maxUnavailable | int | `0` | |
170170
| proxy.updateStrategy.type | string | `"RollingUpdate"` | Customize updateStrategy |
171-
| proxyProtocol.enabled | bool | `false` | When true, enables proxy protocol v2 for tcp tunnels |
171+
| proxyProtocol.enabled | bool | `true` | When true, enables proxy protocol v2 for web/tls tunnels |
172172
| replicaCount | int | `1` | Number of pods for each deployment |
173173
| resources.limits | object | `{}` | Set container limits |
174174
| resources.requests | object | `{"cpu":"100m","memory":"128Mi"}` | Set container requests |

helm/ggbridge/files/nginx.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ http {
5757

5858
# web proxy server
5959
server {
60-
listen {{ .Values.proxy.service.ports.web.containerPort }} {{ ternary "proxy_protocol" "" .Values.proxyProtocol.enabled }};
60+
listen {{ .Values.proxy.service.ports.web.containerPort }};
6161

6262
access_log /dev/stdout web;
6363

helm/ggbridge/templates/client/deployment.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,8 @@ spec:
128128
- name: LOG_LEVEL
129129
value: {{ . | quote }}
130130
{{- end }}
131+
- name: PROXY_PROTOCOL_ENABLED
132+
value: {{ $.Values.proxyProtocol.enabled | quote }}
131133
- name: TUNNEL_SOCKS_ENABLED
132134
value: {{ $.Values.client.tunnels.socks.enabled | quote }}
133135
- name: TUNNEL_TLS_ENABLED

helm/ggbridge/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ logLevel: INFO
124124
dnsResolver: ""
125125

126126
proxyProtocol:
127-
# -- When true, enables proxy protocol v2 for tcp tunnels
128-
enabled: false
127+
# -- When true, enables proxy protocol v2 for web/tls tunnels
128+
enabled: true
129129

130130
caBundle:
131131
# -- Specify CA certificates to inject (PEM format)

main.go

+15-2
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ func buildClientCommand() []string {
120120
connectionMinIdle := getEnv("CONNECTION_MIN_IDLE", "0")
121121
dnsResolver := os.Getenv("DNS_RESOLVER")
122122
tlsEnabled, err := strconv.ParseBool(getEnv("TLS_ENABLED", "false"))
123+
proxyProtocolEnabled, err := strconv.ParseBool(getEnv("PROXY_PROTOCOL_ENABLED", "false"))
123124
if err != nil {
124125
log.Fatalf("Invalid boolean for tlsEnabled: %s", err)
125126
}
@@ -213,12 +214,24 @@ func buildClientCommand() []string {
213214

214215
// Enables client to server tcp tunnel
215216
if tunnelTlsEnabled {
216-
cmd = append(cmd, "--local-to-remote", fmt.Sprintf("tcp://0.0.0.0:%s:127.0.0.1:%s?proxy_protocol", tunnelTlsPort, tunnelTlsRemotePort))
217+
target := fmt.Sprintf("tcp://0.0.0.0:%s:127.0.0.1:%s", tunnelTlsPort, tunnelTlsRemotePort)
218+
219+
if proxyProtocolEnabled {
220+
target += "?proxy_protocol"
221+
}
222+
223+
cmd = append(cmd, "--local-to-remote", target)
217224
}
218225

219226
// Enables client to server web tunnel
220227
if tunnelWebEnabled {
221-
cmd = append(cmd, "--local-to-remote", fmt.Sprintf("tcp://127.0.0.1:%s:127.0.0.1:%s?proxy_protocol", tunnelWebPort, tunnelWebRemotePort))
228+
target := fmt.Sprintf("tcp://127.0.0.1:%s:127.0.0.1:%s", tunnelWebPort, tunnelWebRemotePort)
229+
230+
if proxyProtocolEnabled {
231+
target += "?proxy_protocol"
232+
}
233+
234+
cmd = append(cmd, "--local-to-remote", target)
222235
}
223236

224237
// Enables server to client proxy tunnel

0 commit comments

Comments
 (0)