From df38b6b75f4244bdc818a0d1fa8823a597b6c033 Mon Sep 17 00:00:00 2001 From: unkin-agent Date: Mon, 31 Aug 2026 06:58:45 +1000 Subject: [PATCH] Add golib-ci ServiceAccount for woodpecker (#447) ## Why The new `golib` repo's Woodpecker pipeline needs a dedicated ServiceAccount to run its CI steps under. ## How - Add bare ServiceAccount `golib-ci` in the `woodpecker` namespace and wire it into the base kustomization. Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/447 Co-authored-by: unkin-agent Co-committed-by: unkin-agent --- apps/base/woodpecker/kustomization.yaml | 1 + apps/base/woodpecker/serviceaccount_golib_ci.yaml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 apps/base/woodpecker/serviceaccount_golib_ci.yaml diff --git a/apps/base/woodpecker/kustomization.yaml b/apps/base/woodpecker/kustomization.yaml index bbc2cad..912ee03 100644 --- a/apps/base/woodpecker/kustomization.yaml +++ b/apps/base/woodpecker/kustomization.yaml @@ -10,6 +10,7 @@ resources: - serviceaccount_arrproxy_ci.yaml - serviceaccount_autobackup_operator_ci.yaml - serviceaccount_ghp.yaml + - serviceaccount_golib_ci.yaml - serviceaccount_kea_operator_ci.yaml - serviceaccount_mediamark_ci.yaml - serviceaccount_plugin_docker_buildx.yaml diff --git a/apps/base/woodpecker/serviceaccount_golib_ci.yaml b/apps/base/woodpecker/serviceaccount_golib_ci.yaml new file mode 100644 index 0000000..d1c59e6 --- /dev/null +++ b/apps/base/woodpecker/serviceaccount_golib_ci.yaml @@ -0,0 +1,6 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: golib-ci + namespace: woodpecker