chore(renovate): add SOPS round-trip postUpgradeTasks + self-hosted runner

Address review feedback on SOPS handling for encrypted values.yaml.

- renovate.json: Renovate has NO preUpgradeTasks option (verified against
  the renovate-schema). Decrypt must therefore happen inside postUpgradeTasks
  (which run after the tag bump, before the commit): decrypt the values.yaml,
  then re-encrypt. Encrypting an already-encrypted file would double-encrypt
  the existing ENC secret values. Only **/values.yaml is re-encrypted; the
  docker-compose and Chart.yaml files are not SOPS-encrypted here.
- kubernetes/code/renovate: self-hosted Renovate runner as a Flux CronJob
  running the renovatebot/renovate image, with sops allowed as a
  postUpgradeTask command and the SOPS PGP key loaded to re-encrypt
  values.yaml. Secrets come from SOPS-encrypted dotenv/env file sources.
- Wire code/renovate into the root kubernetes kustomization.
This commit is contained in:
2026-08-26 19:58:55 +02:00
committed by vhaudiquet
parent e71d4be59f
commit 5bf07a2fff
8 changed files with 147 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"platform": "github",
"repositories": ["vhaudiquet/homeprod"],
"autodiscover": false,
"allowedPostUpgradeCommands": ["^sops"],
"allowedPostUpgradeCommandsEnv": ["^SOPS_"],
"onboardingConfigFileName": "renovate.json",
"dryRun": false,
"binarySource": "docker",
"schedule": ["every weekend"]
}
+71
View File
@@ -0,0 +1,71 @@
# Self-hosted Renovate runner.
#
# Runs the managed `renovatebot/renovate` image on a schedule against the
# `vhaudiquet/homeprod` repo (see config.json). Because we need to run SOPS
# during postUpgradeTasks (re-encrypting values.yaml), Renovate cannot run on
# the Mend-hosted app — it must be self-hosted with the sops command allow-listed
# (see config.json -> allowedPostUpgradeCommands) and the SOPS PGP private key
# loaded (renovate-gpg secret below).
apiVersion: batch/v1
kind: CronJob
metadata:
name: renovate
namespace: renovate
spec:
# Run every hour; Renovate's own "schedule": ["every weekend"] (config.json)
# gates when PRs are actually created.
schedule: "42 * * * *"
concurrencyPolicy: Forbid
successfulJobsHistoryLimit: 2
failedJobsHistoryLimit: 4
jobTemplate:
spec:
backoffLimit: 0
template:
spec:
restartPolicy: Never
tolerations:
- key: CriticalAddonsOnly
operator: Exists
containers:
- name: renovate
image: renovatebot/renovate:latest
envFrom:
- secretRef:
name: renovate-secrets
env:
- name: RENOVATE_CONFIG_FILE
value: /etc/renovate/config.json
- name: LOG_LEVEL
value: info
command:
- /bin/sh
- -ec
- |
set -eu
# Import the SOPS PGP private key so rebuild/enable SOPS
# re-encryption in postUpgradeTasks works.
gpg --batch --import /etc/renovate/gpg/git-renovate-gpg.key || true
exec renovate
volumeMounts:
- name: config
mountPath: /etc/renovate/config.json
subPath: config.json
readOnly: true
- name: gpg
mountPath: /etc/renovate/gpg
readOnly: true
resources:
requests:
cpu: 100m
memory: 384Mi
limits:
cpu: 1000m
memory: 1Gi
volumes:
- name: config
configMap:
name: renovate-config
- name: gpg
secret:
name: renovate-gpg
@@ -0,0 +1,9 @@
# SOPS PGP PRIVATE key for fingerprint DC6910268E657FF70BA7EC289974494E76938DDC
#
# PLACEHOLDER — replace with the actual ASCII-armored PRIVATE key used to
# encrypt .sops.yaml files, then sops-encrypt this file before committing
# (wrap the whole file as a single value matching the `.*key` regex in
# .sops.yaml, or store it via the .pre-commit flow). Keep it out of git in
# plaintext; this is a Secret source.
#
# -----BEGIN PGP PRIVATE KEY BLOCK----- ... -----END PGP PRIVATE KEY BLOCK-----
@@ -0,0 +1,22 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: renovate
resources:
- namespace.yaml
- cronjob.yaml
# Scalar Renovate env vars (token, SOPS key fingerprint, ...). Stored as a
# dotenv file and SOPS-encrypted by the .pre-commit hook (matches .env rule).
configMapGenerator:
- name: renovate-config
files:
- config.json=config.json
secretGenerator:
- name: renovate-secrets
envs:
- renovate.env
# SOPS PGP private key needed by the renovate runner to re-encrypt
# values.yaml during postUpgradeTasks. Mounted into the pod and imported
# into the container gpg keyring at startup.
- name: renovate-gpg
files:
- git-renovate-gpg.key
+4
View File
@@ -0,0 +1,4 @@
apiVersion: v1
kind: Namespace
metadata:
name: renovate
+18
View File
@@ -0,0 +1,18 @@
# Self-hosted Renovate runtime secrets.
#
# FILL THESE IN. This file is SOPS-encrypted on commit by the .pre-commit hook
# (it matches the `.env` rule in .sops.yaml), and decrypted by kustomize-controller
# via flux-sops before the Secret is generated.
# Fine-grained/personal access token with read+writes:content and read:issues,
# read:pull_requests, and contents read/write on vhaudiquet/homeprod so Renovate
# can open and push PR branches.
RENOVATE_TOKEN=
# Optional: GitHub token used for public API rate-limit boosting (can be the
# same as RENOVATE_TOKEN, or a dedicated one).
GITHUB_COM_TOKEN=
# SOPS master key fingerprint used to (re-)encrypt values.yaml in this repo.
# Matches the `pgp:` entry in .sops.yaml.
SOPS_PGP_FP=DC6910268E657FF70BA7EC289974494E76938DDC
+2
View File
@@ -25,6 +25,8 @@ resources:
- infrastructure/traefik
- infrastructure/caddy
- infrastructure/network/blocky
# Code (self-hosted dev tooling)
- code/renovate
# Dev (developer platform)
- dev/gitea
- dev/harbor
+10
View File
@@ -9,6 +9,16 @@
"helm-values",
"helmv3"
],
"postUpgradeTasks": {
"description": "SOPS round-trip on encrypted values.yaml. Renovate has no preUpgrade hook, so the decrypt must happen here: after the tag bump but before commit, decrypt the file, then re-encrypt. Encrypting an already-encrypted file would double-encrypt the existing ENC secret values and corrupt them.",
"commands": [
"sops -d {{packageFile}} > {{packageFile}}.plain && mv {{packageFile}}.plain {{packageFile}} && sops -e -i {{packageFile}}"
],
"fileFilters": [
"**/values.yaml"
],
"executionMode": "update"
},
"packageRules": [
{
"description": "docker-compose updates",