From 74a1f2ac5b644c1cf9bd2908797e178b73dfbb01 Mon Sep 17 00:00:00 2001 From: unkin-agent Date: Fri, 14 Aug 2026 00:13:18 +1000 Subject: [PATCH] woodpecker: add ghp CI ServiceAccount The ghp fork's .woodpecker pipelines run steps under serviceAccountName: ghp (vet/test/docker-build gate + tag release image push). Add the ServiceAccount in the woodpecker namespace so those pods can schedule. --- apps/base/woodpecker/kustomization.yaml | 1 + apps/base/woodpecker/serviceaccount_ghp.yaml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 apps/base/woodpecker/serviceaccount_ghp.yaml diff --git a/apps/base/woodpecker/kustomization.yaml b/apps/base/woodpecker/kustomization.yaml index baa4838..6f79eb6 100644 --- a/apps/base/woodpecker/kustomization.yaml +++ b/apps/base/woodpecker/kustomization.yaml @@ -8,6 +8,7 @@ resources: - cnpg_backup.yaml - cnpg_pooler.yaml - serviceaccount_autobackup_operator_ci.yaml + - serviceaccount_ghp.yaml - serviceaccount_kea_operator_ci.yaml - serviceaccount_jellyfin_ha_src.yaml - serviceaccount_terraform_artifactapi.yaml diff --git a/apps/base/woodpecker/serviceaccount_ghp.yaml b/apps/base/woodpecker/serviceaccount_ghp.yaml new file mode 100644 index 0000000..a3c8b3a --- /dev/null +++ b/apps/base/woodpecker/serviceaccount_ghp.yaml @@ -0,0 +1,6 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: ghp + namespace: woodpecker -- 2.47.3