mirror of
https://github.com/lordmathis/dev-cluster.git
synced 2025-12-22 16:44:24 +00:00
49 lines
994 B
YAML
49 lines
994 B
YAML
# /clusters/prod/infrastructure.yaml
|
|
---
|
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
|
kind: Kustomization
|
|
metadata:
|
|
name: infrastructure-core
|
|
namespace: flux-system
|
|
spec:
|
|
interval: 10m0s
|
|
path: ./infrastructure/core
|
|
prune: true
|
|
sourceRef:
|
|
kind: GitRepository
|
|
name: flux-system
|
|
---
|
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
|
kind: Kustomization
|
|
metadata:
|
|
name: infrastructure-controllers
|
|
namespace: flux-system
|
|
spec:
|
|
interval: 10m0s
|
|
path: ./infrastructure/controllers
|
|
prune: true
|
|
sourceRef:
|
|
kind: GitRepository
|
|
name: flux-system
|
|
dependsOn:
|
|
- name: infrastructure-core
|
|
---
|
|
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
|
kind: Kustomization
|
|
metadata:
|
|
name: infrastructure-configs
|
|
namespace: flux-system
|
|
spec:
|
|
interval: 10m0s
|
|
path: ./infrastructure/configs
|
|
prune: true
|
|
sourceRef:
|
|
kind: GitRepository
|
|
name: flux-system
|
|
dependsOn:
|
|
- name: infrastructure-controllers
|
|
decryption:
|
|
provider: sops
|
|
secretRef:
|
|
name: sops-age
|