From 66abbd30c8986cf33e37905ebf72dfa48ad38d9a Mon Sep 17 00:00:00 2001 From: Leo Christy Jesuraj Date: Fri, 19 Jul 2024 15:56:27 -0400 Subject: [PATCH 1/2] Document SKIP_FEATURE_INSTALL option Signed-off-by: Leo Christy Jesuraj --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8c818100..fb298145 100644 --- a/README.md +++ b/README.md @@ -69,14 +69,16 @@ Refer to [Repository and proxy modifications](https://openliberty.io/docs/ref/co ## Optional Enterprise Functionality -This section describes the optional enterprise functionality that can be enabled via the Dockerfile during `build` time, by setting particular argument (`ARG`) or environment variable (`ENV`) and calling `RUN configure.sh`. Each of these options trigger the inclusion of specific configuration via XML snippets (except for `VERBOSE`), described below: +This section describes the optional enterprise functionality that can be enabled via the Dockerfile during `build` time, by setting particular argument (`ARG`) or environment variable (`ENV`) and calling `RUN configure.sh`. Each of these options trigger the inclusion of specific configuration via XML snippets (except for `VERBOSE` and `SKIP_FEATURE_INSTALL`), described below: -* `TLS` (`SSL` is deprecated) - * Description: Enable Transport Security in Liberty by adding the `transportSecurity-1.0` feature (includes support for SSL). - * XML Snippet Location: [keystore.xml](ga/latest/kernel/helpers/build/configuration_snippets/keystore.xml). * `HZ_SESSION_CACHE` * Description: Enable the persistence of HTTP sessions using JCache by adding the `sessionCache-1.0` feature. * XML Snippet Location: [hazelcast-sessioncache.xml](ga/latest/kernel/helpers/build/configuration_snippets/hazelcast-sessioncache.xml) +* `TLS` (`SSL` is deprecated) + * Description: Enable Transport Security in Liberty by adding the `transportSecurity-1.0` feature (includes support for SSL). + * XML Snippet Location: [keystore.xml](ga/latest/kernel/helpers/build/configuration_snippets/keystore.xml). +* `SKIP_FEATURE_INSTALL` + * Description: Default setting is `false`. When set to `true`, Liberty features will not be installed using `installUtility` when `configure.sh` is run. This setting is not applicable when `features.sh` is run. * `VERBOSE` * Description: When set to `true` it outputs the commands and results to stdout from `configure.sh`. Otherwise, default setting is `false` and `configure.sh` is silenced. From 7ba17755417172363ec83c4b3a67d35e732afb0b Mon Sep 17 00:00:00 2001 From: Leo Christy Jesuraj Date: Fri, 19 Jul 2024 15:59:02 -0400 Subject: [PATCH 2/2] List the options alphabetically Signed-off-by: Leo Christy Jesuraj --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fb298145..4776c901 100644 --- a/README.md +++ b/README.md @@ -74,11 +74,11 @@ This section describes the optional enterprise functionality that can be enabled * `HZ_SESSION_CACHE` * Description: Enable the persistence of HTTP sessions using JCache by adding the `sessionCache-1.0` feature. * XML Snippet Location: [hazelcast-sessioncache.xml](ga/latest/kernel/helpers/build/configuration_snippets/hazelcast-sessioncache.xml) +* `SKIP_FEATURE_INSTALL` + * Description: Default setting is `false`. When set to `true`, Liberty features will not be installed using `installUtility` when `configure.sh` is run. This setting is not applicable when `features.sh` is run. * `TLS` (`SSL` is deprecated) * Description: Enable Transport Security in Liberty by adding the `transportSecurity-1.0` feature (includes support for SSL). * XML Snippet Location: [keystore.xml](ga/latest/kernel/helpers/build/configuration_snippets/keystore.xml). -* `SKIP_FEATURE_INSTALL` - * Description: Default setting is `false`. When set to `true`, Liberty features will not be installed using `installUtility` when `configure.sh` is run. This setting is not applicable when `features.sh` is run. * `VERBOSE` * Description: When set to `true` it outputs the commands and results to stdout from `configure.sh`. Otherwise, default setting is `false` and `configure.sh` is silenced.