Skip to content

Commit f5026f5

Browse files
chore: Bump OpenSearch version 3.4.0 (#108)
* chore: Bump OpenSearch version 3.4.0 * chore: Update changelog
1 parent 8425d01 commit f5026f5

21 files changed

Lines changed: 76 additions & 72 deletions

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ All notable changes to this project will be documented in this file.
2525
ListenerClass for the discovery service.
2626
- Configuration parameter `spec.nodes.roleGroups.<role-group-name>.config.discoveryServiceExposed`
2727
added to expose a role-group via the discovery service.
28+
- Add support for OpenSearch 3.4.0 ([#108]).
2829

2930
### Changed
3031

@@ -43,6 +44,7 @@ All notable changes to this project will be documented in this file.
4344
[#97]: https://github.com/stackabletech/opensearch-operator/pull/97
4445
[#100]: https://github.com/stackabletech/opensearch-operator/pull/100
4546
[#107]: https://github.com/stackabletech/opensearch-operator/pull/107
47+
[#108]: https://github.com/stackabletech/opensearch-operator/pull/108
4648

4749
## [25.11.0] - 2025-11-07
4850

docs/modules/opensearch/examples/getting_started/getting_started.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ kubectl create secret generic opensearch-credentials \
112112

113113
helm install opensearch-dashboards opensearch-dashboards \
114114
--repo https://opensearch-project.github.io/helm-charts \
115-
--version 3.1.0 \
115+
--version 3.4.0 \
116116
--values opensearch-dashboards-values.yaml \
117117
--wait
118118
# end::opensearch-dashboards[]

docs/modules/opensearch/examples/getting_started/getting_started.sh.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ kubectl create secret generic opensearch-credentials \
112112

113113
helm install opensearch-dashboards opensearch-dashboards \
114114
--repo https://opensearch-project.github.io/helm-charts \
115-
--version 3.1.0 \
115+
--version 3.4.0 \
116116
--values opensearch-dashboards-values.yaml \
117117
--wait
118118
# end::opensearch-dashboards[]

docs/modules/opensearch/examples/getting_started/opensearch-dashboards-values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
image:
33
repository: oci.stackable.tech/sdp/opensearch-dashboards
4-
tag: 3.1.0-stackable0.0.0-dev
4+
tag: 3.4.0-stackable0.0.0-dev
55
serviceAccount:
66
create: false
77
name: simple-opensearch-serviceaccount

docs/modules/opensearch/examples/getting_started/opensearch-dashboards-values.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
image:
33
repository: oci.stackable.tech/sdp/opensearch-dashboards
4-
tag: 3.1.0-stackable{{ versions.opensearch }}
4+
tag: 3.4.0-stackable{{ versions.opensearch }}
55
serviceAccount:
66
create: false
77
name: simple-opensearch-serviceaccount

docs/modules/opensearch/examples/getting_started/opensearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: simple-opensearch
66
spec:
77
image:
8-
productVersion: 3.1.0
8+
productVersion: 3.4.0
99
nodes:
1010
roleConfig:
1111
discoveryServiceListenerClass: external-stable

docs/modules/opensearch/pages/usage-guide/configuration-environment-overrides.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ plugins:
9191
<1> Commas in list entries cannot be escaped.
9292
<2> The brackets must be escaped in `configOverrides` as follows: `"[\"role1\", \"role2\", \"role3\"]"`
9393
<3> Indexed flat lists are considered "legacy" in the OpenSearch code.
94-
// see https://github.com/opensearch-project/OpenSearch/blob/3.1.0/server/src/main/java/org/opensearch/common/settings/Settings.java#L1049
94+
// see https://github.com/opensearch-project/OpenSearch/blob/3.4.0/server/src/main/java/org/opensearch/common/settings/Settings.java#L1049
9595

9696
Other types can be set as strings in `configOverrides` because OpenSearch parses them:
9797

docs/modules/opensearch/pages/usage-guide/opensearch-dashboards.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A basic `values.yaml` file to deploy OpenSearch Dashboards with this chart might
1313
opensearchHosts: null # <1>
1414
image: # <2>
1515
repository: oci.stackable.tech/sdp/opensearch-dashboards
16-
tag: 3.1.0-stackable0.0.0-dev
16+
tag: 3.4.0-stackable0.0.0-dev
1717
serviceAccount:
1818
create: false
1919
name: opensearch-serviceaccount # <3>
@@ -92,7 +92,7 @@ After the values are adjusted according to your deployment, especially `opensear
9292
----
9393
helm install opensearch-dashboards opensearch-dashboards \
9494
--repo https://opensearch-project.github.io/helm-charts \
95-
--version 3.1.0 \
95+
--version 3.4.0 \
9696
--values opensearch-dashboards-values.yaml \
9797
--wait
9898
----

docs/modules/opensearch/pages/usage-guide/opensearch-dashboards.adoc.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A basic `values.yaml` file to deploy OpenSearch Dashboards with this chart might
1313
opensearchHosts: null # <1>
1414
image: # <2>
1515
repository: oci.stackable.tech/sdp/opensearch-dashboards
16-
tag: 3.1.0-stackable{{ versions.opensearch }}
16+
tag: 3.4.0-stackable{{ versions.opensearch }}
1717
serviceAccount:
1818
create: false
1919
name: opensearch-serviceaccount # <3>
@@ -92,7 +92,7 @@ After the values are adjusted according to your deployment, especially `opensear
9292
----
9393
helm install opensearch-dashboards opensearch-dashboards \
9494
--repo https://opensearch-project.github.io/helm-charts \
95-
--version 3.1.0 \
95+
--version 3.4.0 \
9696
--values opensearch-dashboards-values.yaml \
9797
--wait
9898
----

docs/modules/opensearch/pages/usage-guide/security.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ metadata:
1717
name: opensearch
1818
spec:
1919
image:
20-
productVersion: 3.1.0
20+
productVersion: 3.4.0
2121
clusterConfig:
2222
tls:
2323
serverSecretClass: tls # <1>

0 commit comments

Comments
 (0)