diff --git a/docs/Dockerfile.hugo b/docs/Dockerfile.hugo index 60f345b4e7b..7e304a985f6 100644 --- a/docs/Dockerfile.hugo +++ b/docs/Dockerfile.hugo @@ -1,5 +1,5 @@ FROM curlimages/curl:8.00.1@sha256:9e886c104cae1072f7874c9c214f77c6758f2e8a477234e32eda5fcbfa41f225 AS downloader -ARG HUGO_VERSION=0.111.3 +ARG HUGO_VERSION=0.119.0 ARG TARGETARCH WORKDIR tmp RUN curl -L https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-${TARGETARCH}.tar.gz | tar xz diff --git a/docs/content/en/docs/getting-started/kubernetes-quickstart-guide.md b/docs/content/en/docs/getting-started/kubernetes-quickstart-guide.md index 4614f3c60b0..b25f5423e81 100644 --- a/docs/content/en/docs/getting-started/kubernetes-quickstart-guide.md +++ b/docs/content/en/docs/getting-started/kubernetes-quickstart-guide.md @@ -32,25 +32,48 @@ the defaults options. ### Create a cluster -Create a Kubernetes cluster using Kind or GKE. +If you don't have a Kubernetes Cluster yet, you can use the instructions below +to create a Kubernetes cluster locally or using a managed Kubernetes service: -#### Kind +{{< tabpane >}} +{{% tab header="GKE" %}} -Run the following command to create the Kubernetes cluster: -``` -kind create cluster -``` - -#### GKE +The following commands create a Kubernetes cluster using [Google +Kubernetes Engine](https://cloud.google.com/kubernetes-engine). See +[Installing Google Cloud SDK](https://cloud.google.com/sdk/install) for +instructions on how to install `gcloud` and prepare your account. -Run the following command to create a GKE cluster: - -```shell export NAME="$(whoami)-$RANDOM" +# Create the node pool with the following taint to guarantee that +# Pods are only scheduled/executed in the node when Cilium is ready. +# Alternatively, see the note below. gcloud container clusters create "${NAME}" \ - --zone us-west2-a \ - --num-nodes 1 -``` + --node-taints node.cilium.io/agent-not-ready=true:NoExecute \ + --zone us-west2-a +gcloud container clusters get-credentials "${NAME}" --zone us-west2-a + +{{% /tab %}} +{{< /tabpane >}} + + +## The Tabset Section + +### First Tab + +Here is the first tab's content. + +### Second Tab + +Here is the second tab's content + +# Tabby {.tabset .tabset-fade} + +## GKE +GKE + +## AKS +AKS + ### Deploy Tetragon diff --git a/docs/go.mod b/docs/go.mod index 89db707df00..62ac8db50db 100644 --- a/docs/go.mod +++ b/docs/go.mod @@ -1,5 +1,3 @@ module github.com/cilium/tetragon.io go 1.19 - -require github.com/google/docsy v0.6.0 // indirect diff --git a/docs/go.sum b/docs/go.sum index 785c595dcaa..e69de29bb2d 100644 --- a/docs/go.sum +++ b/docs/go.sum @@ -1,5 +0,0 @@ -github.com/FortAwesome/Font-Awesome v0.0.0-20220831210243-d3a7818c253f/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo= -github.com/google/docsy v0.6.0 h1:43bVF18t2JihAamelQjjGzx1vO2ljCilVrBgetCA8oI= -github.com/google/docsy v0.6.0/go.mod h1:VKKLqD8PQ7AglJc98yBorATfW7GrNVsn0kGXVYF6G+M= -github.com/google/docsy/dependencies v0.6.0/go.mod h1:EDGc2znMbGUw0RW5kWwy2oGgLt0iVXBmoq4UOqstuNE= -github.com/twbs/bootstrap v4.6.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0= diff --git a/docs/hugo.toml b/docs/hugo.toml index 8de6fb465c0..2c96a7cf229 100644 --- a/docs/hugo.toml +++ b/docs/hugo.toml @@ -241,7 +241,7 @@ enable = false # replacements = "github.com/google/docsy -> ../../docsy" [module.hugoVersion] extended = true - min = "0.75.0" + min = "0.119.0" [[module.imports]] path = "github.com/google/docsy" disable = false