From bbb9acba368d1850acf55b30c6dc97dbe3958d6b Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Sun, 28 Jun 2026 22:04:33 +1000 Subject: [PATCH] feat: add woodpecker service accounts for media terraform repos (#214) Add Kubernetes ServiceAccounts in the woodpecker namespace for terraform-sonarr, terraform-radarr, and terraform-prowlarr CI pipelines. Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/214 Co-authored-by: Ben Vincent Co-committed-by: Ben Vincent --- apps/base/woodpecker/kustomization.yaml | 3 +++ apps/base/woodpecker/serviceaccount_terraform_prowlarr.yaml | 6 ++++++ apps/base/woodpecker/serviceaccount_terraform_radarr.yaml | 6 ++++++ apps/base/woodpecker/serviceaccount_terraform_sonarr.yaml | 6 ++++++ 4 files changed, 21 insertions(+) create mode 100644 apps/base/woodpecker/serviceaccount_terraform_prowlarr.yaml create mode 100644 apps/base/woodpecker/serviceaccount_terraform_radarr.yaml create mode 100644 apps/base/woodpecker/serviceaccount_terraform_sonarr.yaml diff --git a/apps/base/woodpecker/kustomization.yaml b/apps/base/woodpecker/kustomization.yaml index be4c460..b9c7e42 100644 --- a/apps/base/woodpecker/kustomization.yaml +++ b/apps/base/woodpecker/kustomization.yaml @@ -9,6 +9,9 @@ resources: - serviceaccount_terraform_artifactapi.yaml - serviceaccount_terraform_authentik.yaml - serviceaccount_terraform_git.yaml + - serviceaccount_terraform_prowlarr.yaml + - serviceaccount_terraform_radarr.yaml + - serviceaccount_terraform_sonarr.yaml - serviceaccount_terraform_vault.yaml - vaultauth.yaml - vaultstaticsecret.yaml diff --git a/apps/base/woodpecker/serviceaccount_terraform_prowlarr.yaml b/apps/base/woodpecker/serviceaccount_terraform_prowlarr.yaml new file mode 100644 index 0000000..de1a331 --- /dev/null +++ b/apps/base/woodpecker/serviceaccount_terraform_prowlarr.yaml @@ -0,0 +1,6 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: terraform-prowlarr + namespace: woodpecker diff --git a/apps/base/woodpecker/serviceaccount_terraform_radarr.yaml b/apps/base/woodpecker/serviceaccount_terraform_radarr.yaml new file mode 100644 index 0000000..75de5cd --- /dev/null +++ b/apps/base/woodpecker/serviceaccount_terraform_radarr.yaml @@ -0,0 +1,6 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: terraform-radarr + namespace: woodpecker diff --git a/apps/base/woodpecker/serviceaccount_terraform_sonarr.yaml b/apps/base/woodpecker/serviceaccount_terraform_sonarr.yaml new file mode 100644 index 0000000..3e9ed97 --- /dev/null +++ b/apps/base/woodpecker/serviceaccount_terraform_sonarr.yaml @@ -0,0 +1,6 @@ +--- +apiVersion: v1 +kind: ServiceAccount +metadata: + name: terraform-sonarr + namespace: woodpecker