feat: implement backups to vaultwarden
This commit is contained in:
parent
84f703fabc
commit
247064370f
|
@ -4,6 +4,6 @@ resources:
|
|||
- ./namespace.yaml
|
||||
#- ./network_policy.yaml
|
||||
- ./transfersh
|
||||
- ./vaultwarden
|
||||
- ./vaultwarden/ks.yaml
|
||||
- ./hastebin
|
||||
- ./gotify
|
|
@ -2,7 +2,6 @@ apiVersion: helm.toolkit.fluxcd.io/v2
|
|||
kind: HelmRelease
|
||||
metadata:
|
||||
name: vaultwarden
|
||||
namespace: tools
|
||||
spec:
|
||||
interval: 5m
|
||||
chart:
|
||||
|
@ -17,7 +16,7 @@ spec:
|
|||
values:
|
||||
image:
|
||||
repository: vaultwarden/server
|
||||
tag: "1.32.3"
|
||||
tag: 1.32.3
|
||||
|
||||
service:
|
||||
main:
|
||||
|
@ -46,10 +45,14 @@ spec:
|
|||
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
hostPath: /mnt/MainPool/Kubernetes/vaultwarden
|
||||
mountPath: /data
|
||||
existingClaim: vaultwarden
|
||||
globalMounts:
|
||||
- path: /data
|
||||
# data:
|
||||
# enabled: true
|
||||
# type: hostPath
|
||||
# hostPath: /mnt/MainPool/Kubernetes/vaultwarden
|
||||
# mountPath: /data
|
||||
|
||||
resources:
|
||||
requests:
|
|
@ -1,4 +1,5 @@
|
|||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
resources:
|
||||
- ../../../../../common/templates/volsync
|
||||
- ./helm-release.yaml
|
|
@ -0,0 +1,32 @@
|
|||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/kustomize.toolkit.fluxcd.io/kustomization_v1.json
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: &app vaultwarden
|
||||
namespace: flux-system
|
||||
spec:
|
||||
timeout: 5m
|
||||
interval: 10m
|
||||
targetNamespace: tools
|
||||
path: ./kubernetes/main/apps/tools/vaultwarden
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: home-cluster
|
||||
decryption:
|
||||
provider: sops
|
||||
secretRef:
|
||||
name: sops-gpg
|
||||
dependsOn:
|
||||
- name: openebs
|
||||
- name: openebs-sc
|
||||
- name: volsync
|
||||
postBuild:
|
||||
substituteFrom:
|
||||
- kind: ConfigMap
|
||||
name: cluster-settings
|
||||
- kind: Secret
|
||||
name: cluster-secrets
|
||||
substitute:
|
||||
APP: *app
|
||||
VOLSYNC_CAPACITY: 5Gi
|
Loading…
Reference in New Issue