apiVersion: batch/v1 kind: CronJob metadata: name: renovate-gitea spec: schedule: '@hourly' concurrencyPolicy: Forbid jobTemplate: spec: template: spec: affinity: nodeAffinity: preferredDuringSchedulingIgnoredDuringExecution: - weight: 1 preference: matchExpressions: - key: location operator: In values: - fsn hostAliases: - ip: "100.105.22.116" hostnames: - "git.prettysunflower.moe" containers: - name: renovate image: renovate/renovate:41.2.0 env: - name: LOG_LEVEL value: debug envFrom: - secretRef: name: renovate-gitea-env restartPolicy: Never