From 00a8da972aca31c49535881101c6fb8d39df7976 Mon Sep 17 00:00:00 2001 From: ezgidemirel Date: Wed, 22 Mar 2023 18:01:48 +0300 Subject: [PATCH] Add secret name to ESSOptions Signed-off-by: ezgidemirel --- pkg/controller/options.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/controller/options.go b/pkg/controller/options.go index bafe0052e..9a763435b 100644 --- a/pkg/controller/options.go +++ b/pkg/controller/options.go @@ -73,5 +73,6 @@ func (o Options) ForControllerRuntime() controller.Options { // ESSOptions for External Secret Stores. type ESSOptions struct { - TLSConfig *tls.Config + TLSConfig *tls.Config + TLSSecretName *string }