From 1334eb139e116d2bae33e200b4670332bed28916 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Wed, 9 Apr 2025 13:57:25 +0200 Subject: [PATCH] fix(clustertool): use helm yaml rendering for chart.yaml --- clustertool/pkg/helper/yamlutil.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clustertool/pkg/helper/yamlutil.go b/clustertool/pkg/helper/yamlutil.go index 54d5803dcac..97fbc3e0830 100644 --- a/clustertool/pkg/helper/yamlutil.go +++ b/clustertool/pkg/helper/yamlutil.go @@ -4,7 +4,7 @@ import ( "bytes" "io" - "gopkg.in/yaml.v3" + "sigs.k8s.io/yaml" ) // Encoder is a custom encoder for YAML that writes to an io.Writer.