From b95a574d7376159606e6faf8c84a130526059a22 Mon Sep 17 00:00:00 2001 From: Davide Piu Date: Fri, 20 Feb 2026 00:18:38 +0000 Subject: [PATCH] remove velero --- clusters/lab/backup/velero.yaml | 78 --------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 clusters/lab/backup/velero.yaml diff --git a/clusters/lab/backup/velero.yaml b/clusters/lab/backup/velero.yaml deleted file mode 100644 index d3bb230..0000000 --- a/clusters/lab/backup/velero.yaml +++ /dev/null @@ -1,78 +0,0 @@ ---- -apiVersion: source.toolkit.fluxcd.io/v1 -kind: HelmRepository -metadata: - name: vmware-tanzu - namespace: flux-system -spec: - interval: 1h - url: https://vmware-tanzu.github.io/helm-charts ---- -apiVersion: v1 -kind: Namespace -metadata: - name: velero ---- -apiVersion: helm.toolkit.fluxcd.io/v2 -kind: HelmRelease -metadata: - name: velero - namespace: flux-system -spec: - interval: 1h - targetNamespace: velero - install: - createNamespace: true - chart: - spec: - chart: velero - sourceRef: - kind: HelmRepository - name: vmware-tanzu - interval: 1h - values: - kubectl: - image: - repository: docker.io/bitnami/kubectl - resources: - requests: - cpu: 50m - memory: 128Mi - limits: - cpu: 500m - memory: 256Mi - initContainers: - - name: velero-plugin-for-aws - image: velero/velero-plugin-for-aws:v1.11.0 - imagePullPolicy: IfNotPresent - volumeMounts: - - mountPath: /target - name: plugins - deployNodeAgent: true - nodeAgent: - resources: - requests: - cpu: 50m - memory: 64Mi - limits: - cpu: 500m - memory: 256Mi - configuration: - backupStorageLocation: - - name: default - provider: aws - bucket: velero-backups - default: true - config: - region: eu-central-1 - s3ForcePathStyle: "true" - s3Url: http://placeholder:9000 - volumeSnapshotLocation: [] - credentials: - useSecret: true - secretContents: - cloud: | - [default] - aws_access_key_id=placeholder - aws_secret_access_key=placeholder - schedules: {}