We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c4c49 commit d4c0271Copy full SHA for d4c0271
internal/expose/port.go
@@ -268,7 +268,7 @@ func (p *ServiceForward) Start(ctx context.Context) error { //nolint:funlen
268
ports := make([]string, len(p.Ports))
269
for i, port := range p.Ports {
270
prt := int(port.TargetPort.IntVal)
271
- ports[i] = fmt.Sprintf("%d:%d", prt, port.MappedPort)
+ ports[i] = fmt.Sprintf("%d:%d", port.MappedPort, prt)
272
p.log.Debugf("tunneling port %v", ports[i])
273
}
274
0 commit comments