Skip to content

Commit 5f04ac1

Browse files
committed
release 24.3.0
1 parent 33b3a75 commit 5f04ac1

File tree

11 files changed

+60
-57
lines changed

11 files changed

+60
-57
lines changed

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+
## [24.3.0] - 2024-03-20
8+
79
### Added
810

911
- Various documentation of the CRD ([#394]).

Cargo.lock

Lines changed: 2 additions & 2 deletions
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/crd", "rust/operator-binary"]
33
resolver = "2"
44

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

deploy/helm/hive-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: hive-operator
4-
version: "0.0.0-dev"
5-
appVersion: "0.0.0-dev"
4+
version: "24.3.0"
5+
appVersion: "24.3.0"
66
description: The Stackable Operator for Apache Hive
77
home: https://github.com/stackabletech/hive-operator
88
maintainers:

deploy/helm/hive-operator/crds/crds.yaml

Lines changed: 24 additions & 24 deletions
Large diffs are not rendered by default.

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: "24.3"
4+
prerelease: false

docs/modules/hive/examples/getting_started/getting_started.sh

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ cd "$(dirname "$0")"
2121

2222
case "$1" in
2323
"helm")
24-
echo "Adding 'stackable-dev' Helm Chart repository"
24+
echo "Adding 'stackable-stable' Helm Chart repository"
2525
# tag::helm-add-repo[]
26-
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
26+
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
2727
# end::helm-add-repo[]
2828
echo "Updating Helm repo"
2929
helm repo update
3030

3131
echo "Installing Operators with Helm"
3232
# tag::helm-install-operators[]
33-
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
34-
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
35-
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
36-
helm install --wait hive-operator stackable-dev/hive-operator --version 0.0.0-dev
33+
helm install --wait commons-operator stackable-stable/commons-operator --version 24.3.0
34+
helm install --wait secret-operator stackable-stable/secret-operator --version 24.3.0
35+
helm install --wait listener-operator stackable-stable/listener-operator --version 24.3.0
36+
helm install --wait hive-operator stackable-stable/hive-operator --version 24.3.0
3737
# end::helm-install-operators[]
3838

3939
echo "Install minio for S3"
@@ -72,18 +72,18 @@ if false; then
7272
echo "Installing Operators with stackablectl"
7373
# tag::stackablectl-install-operators[]
7474
stackablectl operator install \
75-
commons=0.0.0-dev \
76-
secret=0.0.0-dev \
77-
listener=0.0.0-dev \
78-
hive=0.0.0-dev
75+
commons=24.3.0 \
76+
secret=24.3.0 \
77+
listener=24.3.0 \
78+
hive=24.3.0
7979
# end::stackablectl-install-operators[]
8080
fi
8181

8282
echo "Installing MinIO and PostgreSQL with stackablectl"
8383
# tag::stackablectl-install-minio-postgres-stack[]
8484
stackablectl \
85-
--stack-file stackablectl-hive-postgres-minio-stack.yaml \
86-
--release-file release.yaml \
85+
--additional-stacks-file stackablectl-hive-postgres-minio-stack.yaml \
86+
--additional-releases-file release.yaml \
8787
stack install hive-minio-postgres
8888
# end::stackablectl-install-minio-postgres-stack[]
8989
;;
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tag::stackablectl-install-operators-output[]
2-
[INFO ] Installing commons operator in version 0.0.0-dev
3-
[INFO ] Installing secret operator in version 0.0.0-dev
4-
[INFO ] Installing listener operator in version 0.0.0-dev
5-
[INFO ] Installing hive operator in version 0.0.0-dev
2+
[INFO ] Installing commons operator in version 24.3.0
3+
[INFO ] Installing secret operator in version 24.3.0
4+
[INFO ] Installing listener operator in version 24.3.0
5+
[INFO ] Installing hive operator in version 24.3.0
66
# end::stackablectl-install-operators-output[]

docs/modules/hive/examples/getting_started/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ releases:
55
description: Demo / Test release for Hive getting started guide
66
products:
77
commons:
8-
operatorVersion: 0.0.0-dev
8+
operatorVersion: 24.3.0
99
hive:
10-
operatorVersion: 0.0.0-dev
10+
operatorVersion: 24.3.0
1111
listener:
12-
operatorVersion: 0.0.0-dev
12+
operatorVersion: 24.3.0
1313
secret:
14-
operatorVersion: 0.0.0-dev
14+
operatorVersion: 24.3.0

docs/modules/hive/pages/usage-guide/resources.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ metastore:
2727
memory: "512Mi"
2828
----
2929

30-
The operator may configure an additional container for log aggregation. This is done when log aggregation is configured as described in xref:concepts:logging.adoc[]. The resources for this container cannot be configured using the mechanism described above. Use xref:nightly@home:concepts:overrides.adoc#_pod_overrides[podOverrides] for this purpose.
30+
The operator may configure an additional container for log aggregation. This is done when log aggregation is configured as described in xref:concepts:logging.adoc[]. The resources for this container cannot be configured using the mechanism described above. Use xref:home:concepts:overrides.adoc#_pod_overrides[podOverrides] for this purpose.
3131

3232
You can configure your own resource requests and limits by following the example above.
3333

0 commit comments

Comments
 (0)