From fa76fc7b682b53aa14fec9087b1dcc7b210e512f Mon Sep 17 00:00:00 2001 From: Liz Rice Date: Tue, 14 Nov 2023 12:52:47 +0000 Subject: [PATCH 1/2] Update install-k8s.md Fix typo Signed-off-by: Liz Rice --- docs/content/en/docs/getting-started/install-k8s.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/en/docs/getting-started/install-k8s.md b/docs/content/en/docs/getting-started/install-k8s.md index 893ee018d0f..c751316de3b 100644 --- a/docs/content/en/docs/getting-started/install-k8s.md +++ b/docs/content/en/docs/getting-started/install-k8s.md @@ -65,7 +65,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 %}} From 1cc48416a2b3f723661b41b42edf535b78f9173d Mon Sep 17 00:00:00 2001 From: Kornilios Kourtis Date: Thu, 16 Nov 2023 08:14:00 +0100 Subject: [PATCH 2/2] docs: gsg: distinguish linux-specific kind setup Signed-off-by: Kornilios Kourtis --- docs/content/en/docs/getting-started/install-k8s.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/content/en/docs/getting-started/install-k8s.md b/docs/content/en/docs/getting-started/install-k8s.md index c751316de3b..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