Skip to content

Commit 3a6482e

Browse files
committed
more version bumps
1 parent 500fb23 commit 3a6482e

18 files changed

Lines changed: 58 additions & 58 deletions

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

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

142142
helm install opensearch-dashboards opensearch-dashboards \
143143
--repo https://opensearch-project.github.io/helm-charts \
144-
--version 3.4.0 \
144+
--version 3.6.0 \
145145
--values opensearch-dashboards-values.yaml \
146146
--wait
147147
# 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
@@ -141,7 +141,7 @@ kubectl create secret generic opensearch-credentials \
141141

142142
helm install opensearch-dashboards opensearch-dashboards \
143143
--repo https://opensearch-project.github.io/helm-charts \
144-
--version 3.4.0 \
144+
--version 3.6.0 \
145145
--values opensearch-dashboards-values.yaml \
146146
--wait
147147
# 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.4.0-stackable0.0.0-dev
4+
tag: 3.6.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.4.0-stackable{{ versions.opensearch }}
4+
tag: 3.6.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.4.0
8+
productVersion: 3.6.0
99
clusterConfig:
1010
security:
1111
settings:

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.4.0-stackable0.0.0-dev
16+
tag: 3.6.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.4.0 \
95+
--version 3.6.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.4.0-stackable{{ versions.opensearch }}
16+
tag: 3.6.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.4.0 \
95+
--version 3.6.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
@@ -163,7 +163,7 @@ metadata:
163163
name: opensearch
164164
spec:
165165
image:
166-
productVersion: 3.4.0
166+
productVersion: 3.6.0
167167
clusterConfig:
168168
tls:
169169
serverSecretClass: tls # <1>

rust/operator-binary/src/controller.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -602,14 +602,14 @@ mod tests {
602602
fn validated_cluster() -> ValidatedCluster {
603603
ValidatedCluster::new(
604604
ResolvedProductImage {
605-
product_version: "3.4.0".to_owned(),
606-
app_version_label_value: LabelValue::from_str("3.4.0-stackable0.0.0-dev")
605+
product_version: "3.6.0".to_owned(),
606+
app_version_label_value: LabelValue::from_str("3.6.0-stackable0.0.0-dev")
607607
.expect("should be a valid label value"),
608-
image: "oci.stackable.tech/sdp/opensearch:3.4.0-stackable0.0.0-dev".to_string(),
608+
image: "oci.stackable.tech/sdp/opensearch:3.6.0-stackable0.0.0-dev".to_string(),
609609
image_pull_policy: "Always".to_owned(),
610610
pull_secrets: None,
611611
},
612-
ProductVersion::from_str_unsafe("3.4.0"),
612+
ProductVersion::from_str_unsafe("3.6.0"),
613613
ClusterName::from_str_unsafe("my-opensearch"),
614614
NamespaceName::from_str_unsafe("default"),
615615
uuid!("e6ac237d-a6d4-43a1-8135-f36506110912"),

rust/operator-binary/src/controller/build.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,14 +177,14 @@ mod tests {
177177
fn validated_cluster() -> ValidatedCluster {
178178
ValidatedCluster::new(
179179
ResolvedProductImage {
180-
product_version: "3.4.0".to_owned(),
181-
app_version_label_value: LabelValue::from_str("3.4.0-stackable0.0.0-dev")
180+
product_version: "3.6.0".to_owned(),
181+
app_version_label_value: LabelValue::from_str("3.6.0-stackable0.0.0-dev")
182182
.expect("should be a valid label value"),
183-
image: "oci.stackable.tech/sdp/opensearch:3.4.0-stackable0.0.0-dev".to_string(),
183+
image: "oci.stackable.tech/sdp/opensearch:3.6.0-stackable0.0.0-dev".to_string(),
184184
image_pull_policy: "Always".to_owned(),
185185
pull_secrets: None,
186186
},
187-
ProductVersion::from_str_unsafe("3.4.0"),
187+
ProductVersion::from_str_unsafe("3.6.0"),
188188
ClusterName::from_str_unsafe("my-opensearch"),
189189
NamespaceName::from_str_unsafe("default"),
190190
uuid!("e6ac237d-a6d4-43a1-8135-f36506110912"),

0 commit comments

Comments
 (0)