From 8d276c02206f42da361f24b3bbc4b31dfb706f54 Mon Sep 17 00:00:00 2001 From: GaOrtiga <49285692+GaOrtiga@users.noreply.github.com> Date: Tue, 11 Oct 2022 12:46:36 -0300 Subject: [PATCH] Improve description of `secstorage.encrypt.copy` (#6811) The description of the configuration secstorage.encrypt.copy fails to mention that it is also used to make sure the certificate assigned to the zone is used when creating links for external access (download/upload of disks,templates and ISOs). This PR improves this description. Co-authored-by: Gabriel Ortiga Fernandes --- .../src/main/resources/META-INF/db/schema-41710to41800.sql | 5 +++++ server/src/main/java/com/cloud/configuration/Config.java | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql b/engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql index 7aeee1aa22c..89e1cb41a58 100644 --- a/engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql +++ b/engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql @@ -581,3 +581,8 @@ UPDATE cloud.configuration SET description = 'Comma separated list of email addresses which are going to receive alert emails.' WHERE name = 'alert.email.addresses'; +-- Improve description of configuration `secstorage.encrypt.copy` #6811. +UPDATE cloud.configuration +SET description = "Use SSL method used to encrypt copy traffic between zones. Also ensures that the certificate assigned to the zone is used when +generating links for external access." +WHERE name = 'secstorage.encrypt.copy'; diff --git a/server/src/main/java/com/cloud/configuration/Config.java b/server/src/main/java/com/cloud/configuration/Config.java index cb2c673aafb..3203da367ec 100644 --- a/server/src/main/java/com/cloud/configuration/Config.java +++ b/server/src/main/java/com/cloud/configuration/Config.java @@ -689,7 +689,7 @@ public enum Config { Boolean.class, "secstorage.encrypt.copy", "false", - "Use SSL method used to encrypt copy traffic between zones", + "Use SSL method used to encrypt copy traffic between zones. Also ensures that the certificate assigned to the zone is used when generating links for external access.", "true,false"), SecStorageSecureCopyCert( "Advanced",