Skip to content

Commit f0e5c87

Browse files
committed
feat(helm): disable proxy protocol by default for tls/web tunnels
1 parent 58166d4 commit f0e5c87

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
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 | `false` | 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/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

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

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

130130
caBundle:

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)