From 899a9c009557c2be8787522b5e49428a4590b3f3 Mon Sep 17 00:00:00 2001 From: xeruf <27jf@pm.me> Date: Wed, 3 Apr 2024 17:53:21 +0200 Subject: [PATCH] overrides: raise source-controller max helm index size For truecharts: https://github.com/fluxcd/flux2/issues/4635 --- overrides/source-controller-patch.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 overrides/source-controller-patch.yaml diff --git a/overrides/source-controller-patch.yaml b/overrides/source-controller-patch.yaml new file mode 100644 index 0000000..c34fc69 --- /dev/null +++ b/overrides/source-controller-patch.yaml @@ -0,0 +1,10 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +patches: + - patch: | + - op: add + path: /spec/template/spec/containers/0/args/- + value: --helm-index-max-size=80000000 + target: + kind: Deployment + name: "source-controller"