Files
HetznerTerra/infrastructure/addons/rancher-backup/helmrelease-rancher-backup.yaml
MichaelFisher1997 75e3604f30
Some checks failed
Deploy Cluster / Terraform (push) Successful in 57s
Deploy Cluster / Ansible (push) Has been cancelled
fix: Skip post-install hooks for rancher-backup HelmRelease
The chart's post-install hook uses rancher/kuberlr-kubectl which fails
to download kubectl. The SA automountServiceAccountToken is managed
manually, so the hook is unnecessary.
2026-04-02 00:45:03 +00:00

35 lines
718 B
YAML

apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: rancher-backup
namespace: flux-system
spec:
interval: 10m
targetNamespace: cattle-resources-system
dependsOn:
- name: rancher-backup-crd
chart:
spec:
chart: rancher-backup
version: "106.0.2+up8.1.0"
sourceRef:
kind: HelmRepository
name: rancher-charts
namespace: flux-system
install:
createNamespace: true
remediation:
retries: 3
skipHooks: true
upgrade:
remediation:
retries: 3
skipHooks: true
values:
image:
repository: rancher/backup-restore-operator
kubectl:
image:
repository: bitnami/kubectl
tag: "1.34"