From e81e93f1c443f8a85b814b016905eb00152a4c9d Mon Sep 17 00:00:00 2001 From: Arnob kumar saha Date: Fri, 14 Aug 2026 18:31:50 +0600 Subject: [PATCH] Add OfflineLicense to cluster ReconfigureOptions Signed-off-by: Arnob kumar saha --- apis/cluster/types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apis/cluster/types.go b/apis/cluster/types.go index 25422a12..c06b5620 100644 --- a/apis/cluster/types.go +++ b/apis/cluster/types.go @@ -91,6 +91,9 @@ type ConnectOptions struct { type ReconfigureOptions struct { BasicInfo BasicInfo `json:"basicInfo"` Components ComponentOptions `json:"components,omitempty"` + // OfflineLicense is a raw PEM encoded license for the cluster being reconfigured. + // Offline installers can't reach the licensor, so the license is supplied by the user. + OfflineLicense string `json:"offlineLicense,omitempty"` } type RemovalOptions struct {