From 9c8f9a01df791e1e18c957fd205f750414b261af Mon Sep 17 00:00:00 2001 From: Derek Nola Date: Tue, 5 Sep 2023 10:49:26 -0700 Subject: [PATCH] Update faq with server/agent info Signed-off-by: Derek Nola --- docs/architecture/architecture.md | 4 +--- docs/faq/faq.md | 4 ++++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/architecture/architecture.md b/docs/architecture/architecture.md index 0bf6080bd..a7ac6b316 100644 --- a/docs/architecture/architecture.md +++ b/docs/architecture/architecture.md @@ -6,9 +6,7 @@ weight: 1 import ThemedImage from '@theme/ThemedImage'; import useBaseUrl from '@docusaurus/useBaseUrl'; -This page describes the architecture of a high-availability K3s server cluster and how it differs from a single-node server cluster. - -It also describes how agent nodes are registered with K3s servers. +### Servers and Agents * A server node is defined as a host running the `k3s server` command, with control-plane and datastore components managed by K3s. * An agent node is defined as a host running the `k3s agent` command, without any datastore or control-plane components. diff --git a/docs/faq/faq.md b/docs/faq/faq.md index c5647716f..61702b4ed 100644 --- a/docs/faq/faq.md +++ b/docs/faq/faq.md @@ -17,6 +17,10 @@ Simply start K3s server with `--disable=traefik` and deploy your ingress. At this time K3s does not natively support Windows, however we are open to the idea in the future. +### What exactly are Servers and Agents? + +For a breakdown on the components that make up a server and agent, see the [Architecture page](../architecture/architecture.md). + ### How can I build from source? Please reference the K3s [BUILDING.md](https://github.com/k3s-io/k3s/blob/master/BUILDING.md) with instructions.