Skip to content

Commit

Permalink
Merge pull request #97 from qpoint-io/marc-barry/fix-ports
Browse files Browse the repository at this point in the history
Fix port mixup between transparent and middleware enabled ports.
  • Loading branch information
marc-barry authored Jun 24, 2024
2 parents 49f2d25 + 86b392c commit b4d8306
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion charts/qpoint-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.6
version: 0.0.7

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
20 changes: 10 additions & 10 deletions charts/qpoint-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,32 +46,32 @@ securityContext:
# runAsUser: 1000

defaultTCPListenAddress: "0.0.0.0"
middlewareTCPForwardPorts: "18080:80,18443:443"
transparentTCPForwardPorts: "10080:80,10443:443"
middlewareTCPForwardPorts: "10080:80,10443:443"
transparentTCPForwardPorts: "18080:80,18443:443"

service:
type: ClusterIP
ports:
- port: 10080
containerPort: 10080
protocol: TCP
name: e-http-tr
description: "Egress HTTP, transparent proxy"
name: e-http-mi
description: "Egress HTTP, middleware proxy"
- port: 10443
containerPort: 10443
protocol: TCP
name: e-https-tr
description: "Egress HTTPS, transparent proxy"
name: e-https-mi
description: "Egress HTTPS, middleware proxy"
- port: 18080
containerPort: 18080
protocol: TCP
name: e-http-mi
description: "Egress HTTP, middleware proxy"
name: e-http-tr
description: "Egress HTTP, transparent proxy"
- port: 18443
containerPort: 18443
protocol: TCP
name: e-https-mi
description: "Egress HTTPS, middleware proxy"
name: e-https-tr
description: "Egress HTTPS, transparent proxy"

status:
addr: 0.0.0.0
Expand Down

0 comments on commit b4d8306

Please sign in to comment.