From 8290e84c3f9f079d200305ccc198e88e77119b97 Mon Sep 17 00:00:00 2001 From: Yukiel Zhong <56835284+Yukielz@users.noreply.github.com> Date: Thu, 3 Jul 2025 15:23:57 +0800 Subject: [PATCH] fix(docs): optimize kind getting started (#847) --- docs/content/getting-started/kamaji-kind.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/content/getting-started/kamaji-kind.md b/docs/content/getting-started/kamaji-kind.md index 999ebf1..2ab7414 100644 --- a/docs/content/getting-started/kamaji-kind.md +++ b/docs/content/getting-started/kamaji-kind.md @@ -144,6 +144,12 @@ SECRET="" kubectl get secret $SECRET -o jsonpath='{.data.admin\.conf}'|base64 -d > /tmp/kamaji.conf ``` +- (options) if you run kind in some specific systems with `docker bridge network`, eg macOS, you may need to access the `kind` container, and perform the `kubectl` actions: + +``` +docker exec -it $(docker container list | grep kamaji-control-plane | awk '{print $1}') bash +``` + - Export the `kubeconfig` file to the environment variable `KUBECONFIG` ```