Skip to content

Commit

Permalink
Added minio port in sandbox (flyteorg#203)
Browse files Browse the repository at this point in the history
* Added minio port in the sandbox

Signed-off-by: Yuvraj <[email protected]>
  • Loading branch information
yindia authored and robert-ulbrich-mercedes-benz committed Jul 2, 2024
1 parent 2be8bf0 commit bd53d84
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions flytectl/pkg/docker/docker_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,11 @@ func RemoveSandbox(ctx context.Context, cli Docker, reader io.Reader) error {
// GetSandboxPorts will return sandbox ports
func GetSandboxPorts() (map[nat.Port]struct{}, map[nat.Port][]nat.PortBinding, error) {
return nat.ParsePortSpecs([]string{
"0.0.0.0:30086:30086",
"0.0.0.0:30081:30081",
"0.0.0.0:30082:30082",
"0.0.0.0:30084:30084",
"0.0.0.0:30081:30081", // Flyteconsole Port
"0.0.0.0:30082:30082", // Flyteadmin Port
"0.0.0.0:30084:30084", // Minio API Port
"0.0.0.0:30086:30086", // K8s Dashboard Port
"0.0.0.0:30087:30087", // Minio Console Port
})
}

Expand Down

0 comments on commit bd53d84

Please sign in to comment.