From 839c3b8a6d93714f3b3232308f2913cae212dedb Mon Sep 17 00:00:00 2001 From: Dominic Date: Sun, 8 Oct 2023 23:40:46 -0700 Subject: [PATCH] Add notes about CRI-O specific config (#2546) CRI-O currently requires some additional config for pipelines to run. This adds some basic documentation to the kubernetes section explaining the issue. See #2510 --- .../30-administration/22-backends/40-kubernetes.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/docs/30-administration/22-backends/40-kubernetes.md b/docs/docs/30-administration/22-backends/40-kubernetes.md index 21182e630..f4d5e42b6 100644 --- a/docs/docs/30-administration/22-backends/40-kubernetes.md +++ b/docs/docs/30-administration/22-backends/40-kubernetes.md @@ -134,3 +134,17 @@ steps: - "woodpecker-cache" [...] ``` + +## Tips and tricks + +### CRI-O + +CRI-O users currently need to configure the workspace for all workflows in order for them to run correctly. Add the following at the beginning of your configuration: + +```yml +workspace: + base: "/woodpecker" + path: "/" +``` + +See [this issue](https://github.com/woodpecker-ci/woodpecker/issues/2510) for more details.