From 9ff39f4c8c9f623841a9291516a7e1da92e458d2 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Tue, 11 Aug 2026 07:24:46 +1000 Subject: [PATCH] woodpecker: add jellyfin-ha-src CI ServiceAccount Why: - The jellyfin-ha-src Woodpecker build+test pipeline references a serviceAccountName that must exist in the woodpecker namespace. How: - Add a jellyfin-ha-src ServiceAccount under apps/base/woodpecker/ mirroring the kea-operator-ci CI account and register it in the kustomization. --- apps/base/woodpecker/kustomization.yaml | 1 + apps/base/woodpecker/serviceaccount_jellyfin_ha_src.yaml | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 apps/base/woodpecker/serviceaccount_jellyfin_ha_src.yaml diff --git a/apps/base/woodpecker/kustomization.yaml b/apps/base/woodpecker/kustomization.yaml index 6977aba..20564c7 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_kea_operator_ci.yaml + - serviceaccount_jellyfin_ha_src.yaml - serviceaccount_terraform_artifactapi.yaml - serviceaccount_terraform_authentik.yaml - serviceaccount_terraform_enc.yaml diff --git a/apps/base/woodpecker/serviceaccount_jellyfin_ha_src.yaml b/apps/base/woodpecker/serviceaccount_jellyfin_ha_src.yaml new file mode 100644 index 0000000..759e61a --- /dev/null +++ b/apps/base/woodpecker/serviceaccount_jellyfin_ha_src.yaml @@ -0,0 +1,6 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: jellyfin-ha-src + namespace: woodpecker -- 2.47.3