feat(longhorn): Update backups and ingress
This commit is contained in:
parent
3948296901
commit
10079bf091
@ -3,16 +3,10 @@ kind: Ingress
|
|||||||
metadata:
|
metadata:
|
||||||
name: longhorn-frontend
|
name: longhorn-frontend
|
||||||
namespace: longhorn-system
|
namespace: longhorn-system
|
||||||
annotations:
|
|
||||||
kubernetes.io/ingress.class: "traefik-inter"
|
|
||||||
|
|
||||||
spec:
|
spec:
|
||||||
tls:
|
ingressClassName: nginx-internal
|
||||||
- secretName: longhorn-beta-tls
|
|
||||||
hosts:
|
|
||||||
- longhorn.beta.entos
|
|
||||||
rules:
|
rules:
|
||||||
- host: longhorn.beta.entos
|
- host: longhorn.entos
|
||||||
http:
|
http:
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
|
@ -3,3 +3,6 @@ kind: Kustomization
|
|||||||
|
|
||||||
resources:
|
resources:
|
||||||
- ingress.yaml
|
- ingress.yaml
|
||||||
|
- recurrent-backup.yaml
|
||||||
|
- secrets.yaml
|
||||||
|
- servicemonitor.yaml
|
||||||
|
15
longhorn/recurrent-backup.yaml
Normal file
15
longhorn/recurrent-backup.yaml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
apiVersion: longhorn.io/v1beta1
|
||||||
|
kind: RecurringJob
|
||||||
|
metadata:
|
||||||
|
name: hourly-backup
|
||||||
|
namespace: longhorn-system
|
||||||
|
spec:
|
||||||
|
cron: "0 * * * *"
|
||||||
|
task: backup
|
||||||
|
groups:
|
||||||
|
- standard-pvc
|
||||||
|
retain: 10
|
||||||
|
concurrency: 10
|
||||||
|
labels:
|
||||||
|
recurrence: hourly
|
||||||
|
group: standard-pvc
|
24
longhorn/secrets.yaml
Normal file
24
longhorn/secrets.yaml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: longhorn-s3-secrets
|
||||||
|
namespace: argocd
|
||||||
|
finalizers:
|
||||||
|
- resources-finalizer.argocd.argoproj.io
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
source:
|
||||||
|
repoURL: https://git.halis.io/athens-school/k3s-secrets
|
||||||
|
targetRevision: prod-migration
|
||||||
|
path: longhorn
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=false
|
||||||
|
- ApplyOutOfSyncOnly=true
|
||||||
|
- PruneLast=true
|
||||||
|
destination:
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
namespace: longhorn-system
|
13
longhorn/servicemonitor.yaml
Normal file
13
longhorn/servicemonitor.yaml
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
apiVersion: monitoring.coreos.com/v1
|
||||||
|
kind: ServiceMonitor
|
||||||
|
metadata:
|
||||||
|
name: longhorn
|
||||||
|
namespace: longhorn-system
|
||||||
|
labels:
|
||||||
|
team: core
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: longhorn-manager
|
||||||
|
endpoints:
|
||||||
|
- port: manager
|
Loading…
Reference in New Issue
Block a user