From bae1cc0dd8b3d299397dae2e7e099234d32ef4d1 Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Fri, 11 Oct 2024 23:31:56 +0200 Subject: [PATCH] fix(directives): permit `helm-update-chart` access to Kargo client (#2733) Signed-off-by: Hidde Beydals --- internal/directives/helm_chart_updater.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/directives/helm_chart_updater.go b/internal/directives/helm_chart_updater.go index 26886df9b..0a80b4a4a 100644 --- a/internal/directives/helm_chart_updater.go +++ b/internal/directives/helm_chart_updater.go @@ -32,7 +32,7 @@ func init() { builtins.RegisterPromotionStepRunner( newHelmChartUpdater(), &StepRunnerPermissions{ - AllowArgoCDClient: true, + AllowKargoClient: true, AllowCredentialsDB: true, }, )