From e5c84d0f74321763bd1e939e75584e7a10a3e21b Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 2 Aug 2026 19:01:02 +1000 Subject: [PATCH] Add kea-operator-ci ServiceAccount for Woodpecker CI (#330) The new kea-operator repo's Woodpecker CI pipelines run under a dedicated Kubernetes ServiceAccount that must exist in the woodpecker namespace (cross-repo dependency; the .woodpecker/*.yaml steps set `serviceAccountName: kea-operator-ci`). - Adds ServiceAccount `kea-operator-ci` in the `woodpecker` namespace - Registers it in the woodpecker kustomization resources https://claude.ai/code/session_01JUoARVdmhxKQHyyyp1pxeT --------- Co-authored-by: Ben Vincent Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/330 Co-authored-by: Ben Vincent Co-committed-by: Ben Vincent --- apps/base/woodpecker/kustomization.yaml | 1 + apps/base/woodpecker/serviceaccount_kea_operator_ci.yaml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 apps/base/woodpecker/serviceaccount_kea_operator_ci.yaml diff --git a/apps/base/woodpecker/kustomization.yaml b/apps/base/woodpecker/kustomization.yaml index 281b61d..837cf67 100644 --- a/apps/base/woodpecker/kustomization.yaml +++ b/apps/base/woodpecker/kustomization.yaml @@ -7,6 +7,7 @@ resources: - cnpg_cluster.yaml - cnpg_backup.yaml - cnpg_pooler.yaml + - serviceaccount_kea_operator_ci.yaml - serviceaccount_terraform_artifactapi.yaml - serviceaccount_terraform_authentik.yaml - serviceaccount_terraform_enc.yaml diff --git a/apps/base/woodpecker/serviceaccount_kea_operator_ci.yaml b/apps/base/woodpecker/serviceaccount_kea_operator_ci.yaml new file mode 100644 index 0000000..02fb9f3 --- /dev/null +++ b/apps/base/woodpecker/serviceaccount_kea_operator_ci.yaml @@ -0,0 +1,6 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: kea-operator-ci + namespace: woodpecker