From 164938f127bda644d4590fbf4f4c83f289a1212b Mon Sep 17 00:00:00 2001 From: unkin-agent Date: Sat, 15 Aug 2026 16:26:51 +1000 Subject: [PATCH] woodpecker: add plugin-docker-buildx CI ServiceAccount (#368) Why: the new unkin/plugin-docker-buildx repo's pipelines run their buildah build/push step under `serviceAccountName: plugin-docker-buildx`, which must exist in the woodpecker namespace. How: add serviceaccount_plugin_docker_buildx.yaml + wire it into kustomization.yaml, mirroring the existing per-repo woodpecker SAs. Pairs with unkin/plugin-docker-buildx#1. Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/368 Co-authored-by: unkin-agent Co-committed-by: unkin-agent --- apps/base/woodpecker/kustomization.yaml | 1 + .../woodpecker/serviceaccount_plugin_docker_buildx.yaml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 apps/base/woodpecker/serviceaccount_plugin_docker_buildx.yaml diff --git a/apps/base/woodpecker/kustomization.yaml b/apps/base/woodpecker/kustomization.yaml index 6f79eb6..ebc1288 100644 --- a/apps/base/woodpecker/kustomization.yaml +++ b/apps/base/woodpecker/kustomization.yaml @@ -10,6 +10,7 @@ resources: - serviceaccount_autobackup_operator_ci.yaml - serviceaccount_ghp.yaml - serviceaccount_kea_operator_ci.yaml + - serviceaccount_plugin_docker_buildx.yaml - serviceaccount_jellyfin_ha_src.yaml - serviceaccount_terraform_artifactapi.yaml - serviceaccount_terraform_authentik.yaml diff --git a/apps/base/woodpecker/serviceaccount_plugin_docker_buildx.yaml b/apps/base/woodpecker/serviceaccount_plugin_docker_buildx.yaml new file mode 100644 index 0000000..d6819c8 --- /dev/null +++ b/apps/base/woodpecker/serviceaccount_plugin_docker_buildx.yaml @@ -0,0 +1,6 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: plugin-docker-buildx + namespace: woodpecker