From 3b73922fba02afef924986309679873996e0654f Mon Sep 17 00:00:00 2001 From: Romain Aviolat Date: Sat, 16 Oct 2021 00:05:02 +0200 Subject: [PATCH] feat(doc): add Core Scheduling documentation Adding documentation for the Core Scheduling feature. Signed-off-by: Romain Aviolat --- docs/man/containerd-config.toml.5.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/man/containerd-config.toml.5.md b/docs/man/containerd-config.toml.5.md index ccee9e8c6..d5d48552b 100644 --- a/docs/man/containerd-config.toml.5.md +++ b/docs/man/containerd-config.toml.5.md @@ -42,6 +42,10 @@ Imported files will overwrite simple fields like `int` or Imported files are also versioned, and the version can't be higher than the main config. +**sched_core** +: Core scheduling is a feature that allows only trusted tasks to run concurrently +on cpus sharing compute resources (eg: hyperthreads on a core). + **[grpc]** : Section for gRPC socket listener settings. Contains three properties: - **address** (Default: "/run/containerd/containerd.sock") @@ -93,6 +97,7 @@ root = "/var/lib/containerd" state = "/run/containerd" oom_score = 0 imports = ["/etc/containerd/runtime_*.toml", "./debug.toml"] +sched_core = true [grpc] address = "/run/containerd/containerd.sock"