From 4179e5573fdf18aa31449ed572653991562a9c05 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 2 Aug 2026 18:45:21 +1000 Subject: [PATCH] Add kea-operator-ci ServiceAccount for Woodpecker CI The new kea-operator repo's Woodpecker pipelines run under a dedicated Kubernetes ServiceAccount that must exist in the woodpecker namespace. - Add ServiceAccount kea-operator-ci in the woodpecker namespace - Register it in the woodpecker kustomization resources Claude-Session: https://claude.ai/code/session_01JUoARVdmhxKQHyyyp1pxeT --- 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 -- 2.47.3