From 30bbcbc1ca4a66d1c297e125df24a8b1ee0d9942 Mon Sep 17 00:00:00 2001 From: Piotr Godowski Date: Wed, 3 Jan 2024 10:56:58 +0100 Subject: [PATCH] Update DSP API Server cABundle error msg Signed-off-by: Piotr Godowski --- controllers/storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/storage.go b/controllers/storage.go index 1d651088..bc15bf94 100644 --- a/controllers/storage.go +++ b/controllers/storage.go @@ -138,7 +138,7 @@ var ConnectAndQueryObjStore = func(ctx context.Context, log logr.Logger, endpoin if util.IsX509UnknownAuthorityError(err) { errorMessage := "Encountered x509 UnknownAuthorityError when connecting to ObjectStore. " + "If using an tls S3 connection with self-signed certs, you may specify a custom CABundle " + - "to mount on the DSP API Server via the DSPA cr under the spec.cABundle field. If you have already " + + "to mount on the DSP API Server via the DSPA cr under the spec.apiServer.cABundle field. If you have already " + "provided a CABundle, verify the validity of the provided CABundle." log.Error(err, errorMessage) return false, errors.New(errorMessage)