From b4ef51349e5d4c45596c3609d1e661f419943dff Mon Sep 17 00:00:00 2001 From: Joel Eidsath Date: Tue, 13 Aug 2024 13:12:27 -0500 Subject: [PATCH] Correct defaults for opensearchJavaOpts in README (#570) * Update README.md opensearchJavaOpts defaults Signed-off-by: Joel Eidsath * version to 2.22.1 Signed-off-by: Joel Eidsath * 2.22.1 in CHANGELOG.md Signed-off-by: Joel Eidsath --------- Signed-off-by: Joel Eidsath --- charts/opensearch/CHANGELOG.md | 9 +++++++++ charts/opensearch/Chart.yaml | 2 +- charts/opensearch/README.md | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/charts/opensearch/CHANGELOG.md b/charts/opensearch/CHANGELOG.md index 6bd2a71a..f352b451 100644 --- a/charts/opensearch/CHANGELOG.md +++ b/charts/opensearch/CHANGELOG.md @@ -13,6 +13,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed ### Security --- +## [2.22.1] +### Added +### Changed +### Deprecated +### Removed +### Fixed +- Fixed opensearchJavaOpts defaults in README +### Security +--- ## [2.22.0] ### Added - Updated OpenSearch appVersion to 2.16.0 diff --git a/charts/opensearch/Chart.yaml b/charts/opensearch/Chart.yaml index 411d1fc8..09c75182 100644 --- a/charts/opensearch/Chart.yaml +++ b/charts/opensearch/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.22.0 +version: 2.22.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/opensearch/README.md b/charts/opensearch/README.md index 7991d37a..449addd9 100644 --- a/charts/opensearch/README.md +++ b/charts/opensearch/README.md @@ -44,7 +44,7 @@ helm uninstall my-release | `enableServiceLinks` | Set to false to disabling service links, which can cause slow pod startup times when there are many services in the current namespace. | `true` | | `envFrom` | Templatable string to be passed to the [environment from variables][] which will be appended to the `envFrom:` definition for the container | `[]` | | `config` | Allows you to add any config files in `/usr/share/opensearch/config/` such as `opensearch.yml` and `log4j2.properties`. String or map format may be used for specifying content of each configuration file. In case of string format, the whole content of the config file will be replaced by new config file value when in case of using map format content of configuration file will be a result of merge. In both cases content passed through tpl. See [values.yaml][] for an example of the formatting (passed through tpl) | `{}` | -| `opensearchJavaOpts` | Java options for OpenSearch. This is where you should configure the jvm heap size | `-Xmx1g -Xms1g` | +| `opensearchJavaOpts` | Java options for OpenSearch. This is where you should configure the jvm heap size | `-Xmx512M -Xms512M` | | `majorVersion` | Used to set major version specific configuration. If you are using a custom image and not running the default OpenSearch version you will need to set this to the version you are running (e.g. `majorVersion: 1`) | `""` | | `global.dockerRegistry` | Set if you want to change the default docker registry, e.g. a private one. | `""` | | `extraContainers` | Array of extra containers | `""` |