mirror of
https://github.com/vhaudiquet/homeprod.git
synced 2026-09-21 16:36:05 +00:00
18 lines
704 B
YAML
18 lines
704 B
YAML
---
|
|
# Kyverno controller + CRDs only.
|
|
# The ClusterPolicy lives in a SEPARATE directory (kubernetes/system/kyverno-policies)
|
|
# applied by a SEPARATE Flux Kustomization (kyverno-policies) with dependsOn:
|
|
# kyverno. This split is required because Flux dry-runs every resource in a
|
|
# Kustomization before applying any of them — the ClusterPolicy references the
|
|
# kyverno.io/v2 CRD, which does not exist until this HelmRelease installs it, so
|
|
# bundling them together makes the whole Kustomization fail at dry-run.
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
namespace: kyverno
|
|
resources:
|
|
- namespace.yaml
|
|
- repository.yaml
|
|
- release.yaml
|
|
configurations:
|
|
- kustomizeconfig.yaml
|