diff --git a/docs/content/en/docs/getting-started/install-k8s.md b/docs/content/en/docs/getting-started/install-k8s.md index 893ee018d0f..125f8f76865 100644 --- a/docs/content/en/docs/getting-started/install-k8s.md +++ b/docs/content/en/docs/getting-started/install-k8s.md @@ -52,7 +52,15 @@ eksctl create cluster --name "${NAME}" {{% /tab %}} {{% tab Kind %}} -Tetragon's correct operation depends on access to the host /proc filesystem. The following steps configure kind and Tetragon accordingly. +```shell-session +kind create cluster +``` +{{% /tab %}} + +{{% tab "Kind (running on Linux)" %}} + +Tetragon's correct operation depends on access to the host /proc filesystem. The following steps +configure kind and Tetragon accordingly when using a Linux system. ```shell-session cat < kind-config.yaml @@ -65,7 +73,7 @@ nodes: containerPath: /procHost EOF kind create cluster --config kind-config.yaml -EXTRA_HELM_FLAGS="--set teragon.hostProcPath=/procHost" # flags for helm install +EXTRA_HELM_FLAGS="--set tetragon.hostProcPath=/procHost" # flags for helm install ``` {{% /tab %}}