From f45045118038456942f63bbbeb0f2e3e3a1dfe58 Mon Sep 17 00:00:00 2001 From: ajanikow <12255597+ajanikow@users.noreply.github.com> Date: Wed, 26 Nov 2025 11:37:27 +0000 Subject: [PATCH] [Bugfix] [Platform] Fix LM CLI Option --- CHANGELOG.md | 2 ++ pkg/util/cli/lm.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aa4503d3..edbd59a8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log ## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A) +- (Bugfix) (Platform) Fix Container Resource Adjustments +- (Bugfix) (Platform) Fix LM CLI Option ## [1.3.2](https://github.com/arangodb/kube-arangodb/tree/1.3.2) (2025-11-20) - (Bugfix) (Platform) Increase memory limit for Inventory diff --git a/pkg/util/cli/lm.go b/pkg/util/cli/lm.go index ba9aec56d..3255af792 100644 --- a/pkg/util/cli/lm.go +++ b/pkg/util/cli/lm.go @@ -79,7 +79,7 @@ func NewLicenseManager(prefix string) LicenseManager { }, clientSecret: Flag[string]{ - Name: "license.client.secret", + Name: fmt.Sprintf("%s.client.secret", prefix), Description: "LicenseManager Client Secret", Default: "", EnvEnabled: true,