fix(homeassistant): postgres backup retention time

This commit is contained in:
nold 2024-12-22 20:35:53 +01:00
parent 35de5a784b
commit 55cdd805cd
3 changed files with 9 additions and 6 deletions

View file

@ -12,6 +12,7 @@ spec:
source: homeassistant source: homeassistant
backup: backup:
retentionPolicy: "90d"
barmanObjectStore: barmanObjectStore:
destinationPath: "s3://homeassistant-backup/" destinationPath: "s3://homeassistant-backup/"
endpointURL: "http://s3-minio.s3.svc.cluster.local:9000" endpointURL: "http://s3-minio.s3.svc.cluster.local:9000"

View file

@ -140,7 +140,7 @@ configmap:
target: "_blank" target: "_blank"
- logo: assets/png/minio.png - logo: assets/png/minio.png
name: MinIO name: MinIO
url: https://s3.dc url: https://minio.dc
target: "_blank" target: "_blank"
- logo: assets/png/google-mail.png - logo: assets/png/google-mail.png
name: Ntfy name: Ntfy

View file

@ -1,13 +1,15 @@
image: image:
repository: quay.io/minio/minio repository: quay.io/minio/minio
pullPolicy: IfNotPresent tag: latest
pullPolicy: Always
## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio ## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio
## client used to create a default bucket). ## client used to create a default bucket).
## ##
mcImage: mcImage:
repository: quay.io/minio/mc repository: quay.io/minio/mc
pullPolicy: IfNotPresent tag: latest
pullPolicy: Always
## minio mode, i.e. standalone or distributed ## minio mode, i.e. standalone or distributed
mode: standalone ## other supported values are "standalone" mode: standalone ## other supported values are "standalone"
@ -77,11 +79,11 @@ consoleIngress:
cert-manager.io/cluster-issuer: vault-issuer cert-manager.io/cluster-issuer: vault-issuer
path: / path: /
hosts: hosts:
- minio-console.dc - minio.dc
tls: tls:
- secretName: minio-console-tls - secretName: minio-console-tls
hosts: hosts:
- minio-console.dc - minio.dc
securityContext: securityContext:
enabled: true enabled: true
@ -271,7 +273,7 @@ makeBucketJob:
## Use this field to add environment variables relevant to MinIO server. These fields will be passed on to MinIO container(s) ## Use this field to add environment variables relevant to MinIO server. These fields will be passed on to MinIO container(s)
## when Chart is deployed ## when Chart is deployed
environment: environment:
MINIO_BROWSER_REDIRECT_URL: "https://s3.dc" MINIO_BROWSER_REDIRECT_URL: "https://minio.dc"
## Please refer for comprehensive list https://min.io/docs/minio/linux/reference/minio-server/minio-server.html ## Please refer for comprehensive list https://min.io/docs/minio/linux/reference/minio-server/minio-server.html
## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io" ## MINIO_SUBNET_LICENSE: "License key obtained from https://subnet.min.io"
## MINIO_BROWSER: "off" ## MINIO_BROWSER: "off"