fix: pass policy/v1 capability to traefik helm renders
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/kubeconform Pipeline was successful

kustomize helm renderer doesn't pass cluster capabilities, causing the
chart to fall back to policy/v1beta1 for PodDisruptionBudget. Explicitly
declaring the v1 API version makes the chart template render correctly.
This commit is contained in:
2026-05-10 22:11:49 +10:00
parent 034b01115c
commit 61393cf0cc
@@ -12,9 +12,13 @@ helmCharts:
releaseName: traefik-internal
namespace: traefik-system
valuesFile: values-internal.yaml
apiVersions:
- policy/v1/PodDisruptionBudget
- name: traefik
repo: https://artifactapi.k8s.syd1.au.unkin.net/api/v1/virtual/helm
version: "40.0.0"
releaseName: traefik-external
namespace: traefik-system
valuesFile: values-external.yaml
apiVersions:
- policy/v1/PodDisruptionBudget