Compare commits

..

1 Commits

Author SHA1 Message Date
dcea2b5dbf feat: Added barman cloud plugin 2025-12-17 00:25:07 +01:00
9 changed files with 34 additions and 8 deletions

View File

@@ -12,6 +12,7 @@ resources:
- ../../controllers/cnpg/cnpg.yaml - ../../controllers/cnpg/cnpg.yaml
- ../../configs/artifacts.yaml - ../../configs/artifacts.yaml
- ../../configs/letsencrypt/letsencrypt.yaml
- ../../configs/certificates/certificates.yaml - ../../configs/certificates/certificates.yaml
- ../../configs/alerts/alerts.yaml - ../../configs/alerts/alerts.yaml
- ../../configs/longhorn-jobs/longhorn-jobs.yaml - ../../configs/longhorn-jobs/longhorn-jobs.yaml

View File

@@ -9,6 +9,11 @@ spec:
kind: GitRepository kind: GitRepository
name: flux-system name: flux-system
artifacts: artifacts:
- name: letsencrypt
originRevision: "@foundation"
copy:
- from: "@foundation/configs/letsencrypt/**"
to: "@artifact/"
- name: certificates - name: certificates
originRevision: "@foundation" originRevision: "@foundation"
copy: copy:

View File

@@ -3,5 +3,3 @@ kind: Kustomization
resources: resources:
- namespace.yaml - namespace.yaml
- certificate-huizinga-dev.yaml - certificate-huizinga-dev.yaml
- secret-cloudflare-token.enc.yaml
- cluster-issuer.yaml

View File

@@ -8,14 +8,10 @@ spec:
retryInterval: 2m retryInterval: 2m
timeout: 15m timeout: 15m
dependsOn: dependsOn:
- name: cert-manager - name: letsencrypt
sourceRef: sourceRef:
kind: ExternalArtifact kind: ExternalArtifact
name: certificates name: certificates
decryption:
provider: sops
secretRef:
name: sops-gpg
path: ./${cluster_env} path: ./${cluster_env}
prune: true prune: true
wait: true wait: true

View File

@@ -0,0 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- secret-cloudflare-token.enc.yaml
- cluster-issuer.yaml

View File

@@ -0,0 +1,21 @@
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: letsencrypt
namespace: flux-system
spec:
interval: 1h
retryInterval: 2m
timeout: 5m
dependsOn:
- name: cert-manager
sourceRef:
kind: ExternalArtifact
name: letsencrypt
decryption:
provider: sops
secretRef:
name: sops-gpg
path: ./
prune: true
wait: true

View File

@@ -2,8 +2,8 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
resources: resources:
- ../base - ../base
- secret-s3-garage.enc.yaml
- object-store.yaml - object-store.yaml
- secret-s3-garage.enc.yaml
configMapGenerator: configMapGenerator:
- name: values-overlay - name: values-overlay