- Update repository URL to K3S-HOME organization - Change from personal to organization repo
126 lines
2.8 KiB
YAML
126 lines
2.8 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://github.com/K3S-HOME/cluster-infrastructure.git
|
|
targetRevision: main
|
|
ref: values
|
|
- repoURL: https://github.com/K3S-HOME/cluster-infrastructure.git
|
|
targetRevision: main
|
|
path: velero
|
|
kustomize: {}
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: velero
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
allowEmpty: false
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- PrunePropagationPolicy=foreground
|
|
- PruneLast=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: 30m
|
|
memory: 128Mi
|
|
limits:
|
|
memory: 256Mi
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 3000
|
|
|
|
env:
|
|
- name: BASIC_AUTH_ENABLED
|
|
value: "false"
|
|
envFrom: []
|
|
|
|
podSecurityContext:
|
|
runAsNonRoot: true
|
|
runAsUser: 1000
|
|
fsGroup: 1000
|
|
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
readOnlyRootFilesystem: false
|
|
|
|
serviceAccount:
|
|
create: true
|
|
name: velero-ui
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: velero
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
allowEmpty: false
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- PrunePropagationPolicy=foreground
|
|
- PruneLast=true
|
|
retry:
|
|
limit: 5
|
|
backoff:
|
|
duration: 5s
|
|
factor: 2
|
|
maxDuration: 3m
|
|
managedNamespaceMetadata:
|
|
labels:
|
|
goldilocks.fairwinds.com/enabled: 'true'
|
|
revisionHistoryLimit: 10
|