From dbb00f5f85033a9642c6e36a8f79c6784dd798f9 Mon Sep 17 00:00:00 2001 From: Yee Hing Tong Date: Thu, 20 Jan 2022 00:03:37 -0800 Subject: [PATCH] add port (#265) Signed-off-by: Yee Hing Tong --- flytectl/pkg/docker/docker_util.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flytectl/pkg/docker/docker_util.go b/flytectl/pkg/docker/docker_util.go index 29551decab5..e0edaeb148d 100644 --- a/flytectl/pkg/docker/docker_util.go +++ b/flytectl/pkg/docker/docker_util.go @@ -85,7 +85,8 @@ func GetSandboxPorts() (map[nat.Port]struct{}, map[nat.Port][]nat.PortBinding, e "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 + "0.0.0.0:30087:30087", // Old Minio Console Port, keeping around for old images + "0.0.0.0:30088:30088", // Minio Console Port }) }