Files
storage/velero/argocd.yaml
Mayne0213 d38634bbb7 migrate: change repoURLs from GitHub to Gitea
Update all ArgoCD Application references to use Gitea (github0213.com)
instead of GitHub for K3S-HOME/storage repository.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-10 20:43:32 +09:00

140 lines
3.3 KiB
YAML

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: velero
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
# Ignore BackupStorageLocation status changes (updated every 24s by velero)
ignoreDifferences:
- group: velero.io
kind: BackupStorageLocation
jsonPointers:
- /status
sources:
- repoURL: https://vmware-tanzu.github.io/helm-charts
chart: velero
targetRevision: 11.2.0
helm:
valueFiles:
- $values/velero/helm-values.yaml
- repoURL: https://github0213.com/K3S-HOME/storage.git
targetRevision: main
ref: values
- repoURL: https://github0213.com/K3S-HOME/storage.git
targetRevision: main
path: velero
kustomize: {}
destination:
server: https://kubernetes.default.svc
namespace: velero
syncPolicy:
automated:
prune: false # Disabled: Backup/Restore/ServerStatusRequest are dynamic
selfHeal: true
allowEmpty: false
syncOptions:
- CreateNamespace=true
- RespectIgnoreDifferences=true
retry:
limit: 5
backoff:
duration: 5s
factor: 2
maxDuration: 3m
managedNamespaceMetadata:
labels:
goldilocks.fairwinds.com/enabled: 'true'
revisionHistoryLimit: 10
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: velero-ui
namespace: argocd
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://helm.otwld.com/
chart: velero-ui
targetRevision: '*'
helm:
values: |
image:
repository: otwld/velero-ui
tag: latest
pullPolicy: IfNotPresent
replicaCount: 1
resources:
requests:
cpu: 15m # VPA recommendation
memory: 256Mi
limits:
memory: 256Mi
service:
type: ClusterIP
port: 3000
env:
- name: BASIC_AUTH_ENABLED
value: "false"
affinity: {}
envFrom: []
podSecurityContext:
runAsNonRoot: true
runAsUser: 1000
fsGroup: 1000
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: false
serviceAccount:
create: true
name: velero-ui
ingress:
enabled: true
className: traefik
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.middlewares: authelia-authelia-auth@kubernetescrd
hosts:
- host: velero0213.kro.kr
paths:
- path: /
pathType: Prefix
tls:
- secretName: velero-ui-tls
hosts:
- velero0213.kro.kr
destination:
server: https://kubernetes.default.svc
namespace: velero
syncPolicy:
automated:
prune: false # Disabled: Same namespace as velero
selfHeal: true
allowEmpty: false
syncOptions:
- CreateNamespace=true
retry:
limit: 5
backoff:
duration: 5s
factor: 2
maxDuration: 3m
managedNamespaceMetadata:
labels:
goldilocks.fairwinds.com/enabled: 'true'
revisionHistoryLimit: 10