From 778b1b55dd0f2d3764e08369a19f78459da4d0fe Mon Sep 17 00:00:00 2001 From: Joel Eidsath Date: Mon, 12 Aug 2024 15:19:56 -0500 Subject: [PATCH 1/3] Update README.md opensearchJavaOpts defaults Signed-off-by: Joel Eidsath --- charts/opensearch/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 | `""` | From cfd1b76a0cddf880d1a3d7af526c8ecd0a3e3749 Mon Sep 17 00:00:00 2001 From: Joel Eidsath Date: Mon, 12 Aug 2024 16:16:46 -0500 Subject: [PATCH 2/3] version to 2.22.1 Signed-off-by: Joel Eidsath --- charts/opensearch/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 58b36ae228891cd3bf4374acd69770029729f58d Mon Sep 17 00:00:00 2001 From: Joel Eidsath Date: Mon, 12 Aug 2024 16:18:50 -0500 Subject: [PATCH 3/3] 2.22.1 in CHANGELOG.md Signed-off-by: Joel Eidsath --- charts/opensearch/CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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