From 390ae7bd94d55768b97e66196e54c0e3915f1ddb Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 13 Dec 2022 21:10:50 +0100 Subject: [PATCH] Adding missing namespace in port-forward (#675) On page about Kubernetes (https://min.io/docs/minio/kubernetes/upstream/index.html#procedure) in point 3, the namespace is missing. Co-authored-by: Max Roy --- source/includes/k8s/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/includes/k8s/quickstart.rst b/source/includes/k8s/quickstart.rst index c4b1ebfc..b40b9a94 100644 --- a/source/includes/k8s/quickstart.rst +++ b/source/includes/k8s/quickstart.rst @@ -108,7 +108,7 @@ Procedure .. code-block:: shell :class: copyable - kubectl port-forward pod/minio 9000 9090 + kubectl port-forward pod/minio 9000 9090 -n minio-dev The command forwards the pod ports ``9000`` and ``9090`` to the matching port on the local machine while active in the shell. The ``kubectl port-forward`` command only functions while active in the shell session.