Skip to content

Commit ffb5b63

Browse files
chore: Release 26.7.0-rc1 (#162)
Signed-off-by: Techassi <git@techassi.dev> Co-authored-by: Nick <10092581+NickLarsenNZ@users.noreply.github.com>
1 parent 7e5c86e commit ffb5b63

13 files changed

Lines changed: 52 additions & 49 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [26.7.0-rc1] - 2026-07-16
8+
79
### Added
810

911
- BREAKING: Add required CLI argument and env var to set the image repository used to construct final product image names: `IMAGE_REPOSITORY` (`--image-repository`), eg. `oci.example.org/my/namespace` ([#141]).

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["rust/operator-binary"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.0.0-dev"
6+
version = "26.7.0-rc1"
77
authors = ["Stackable GmbH <info@stackable.tech>"]
88
license = "OSL-3.0"
99
edition = "2024"

deploy/helm/opensearch-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
apiVersion: v2
33
name: opensearch-operator
4-
version: "0.0.0-dev"
5-
appVersion: "0.0.0-dev"
4+
version: "26.7.0-rc1"
5+
appVersion: "26.7.0-rc1"
66
description: The Stackable Operator for OpenSearch
77
home: https://github.com/stackabletech/opensearch-operator
88
maintainers:

docs/antora.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
---
22
name: home
3-
version: "nightly"
3+
version: "26.7"
4+
prerelease: false

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ case "$1" in
2626
"helm")
2727
echo "Installing Operators with Helm"
2828
# tag::helm-install-operators[]
29-
helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 0.0.0-dev
30-
helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 0.0.0-dev
31-
helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 0.0.0-dev
32-
helm install --wait opensearch-operator oci://oci.stackable.tech/sdp-charts/opensearch-operator --version 0.0.0-dev
29+
helm install --wait commons-operator oci://oci.stackable.tech/sdp-charts/commons-operator --version 26.7.0-rc1
30+
helm install --wait secret-operator oci://oci.stackable.tech/sdp-charts/secret-operator --version 26.7.0-rc1
31+
helm install --wait listener-operator oci://oci.stackable.tech/sdp-charts/listener-operator --version 26.7.0-rc1
32+
helm install --wait opensearch-operator oci://oci.stackable.tech/sdp-charts/opensearch-operator --version 26.7.0-rc1
3333
# end::helm-install-operators[]
3434
;;
3535
"stackablectl")
3636
echo "installing Operators with stackablectl"
3737
# tag::stackablectl-install-operators[]
3838
stackablectl operator install \
39-
commons=0.0.0-dev \
40-
secret=0.0.0-dev \
41-
listener=0.0.0-dev \
42-
opensearch=0.0.0-dev
39+
commons=26.7.0-rc1 \
40+
secret=26.7.0-rc1 \
41+
listener=26.7.0-rc1 \
42+
opensearch=26.7.0-rc1
4343
# end::stackablectl-install-operators[]
4444
;;
4545
*)
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Installed commons=0.0.0-dev operator
2-
Installed secret=0.0.0-dev operator
3-
Installed listener=0.0.0-dev operator
4-
Installed opensearch=0.0.0-dev operator
1+
Installed commons=26.7.0-rc1 operator
2+
Installed secret=26.7.0-rc1 operator
3+
Installed listener=26.7.0-rc1 operator
4+
Installed opensearch=26.7.0-rc1 operator

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.6.0-stackable0.0.0-dev
4+
tag: 3.6.0-stackable26.7.0-rc1
55
serviceAccount:
66
create: false
77
name: simple-opensearch-serviceaccount

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

Lines changed: 1 addition & 1 deletion
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.6.0-stackable0.0.0-dev
16+
tag: 3.6.0-stackable26.7.0-rc1
1717
serviceAccount:
1818
create: false
1919
name: opensearch-serviceaccount # <3>

0 commit comments

Comments
 (0)