Skip to content

Commit

Permalink
release 24.7.0
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Larsen <[email protected]>
  • Loading branch information
NickLarsenNZ committed Jul 24, 2024
1 parent 73238b5 commit a35041f
Show file tree
Hide file tree
Showing 13 changed files with 66 additions and 63 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [24.7.0] - 2024-07-24

### Added

- Added documentation/tutorial on using external database drivers ([#449]).
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["rust/crd", "rust/operator-binary"]
resolver = "2"

[workspace.package]
version = "0.0.0-dev"
version = "24.7.0"
authors = ["Stackable GmbH <[email protected]>"]
license = "OSL-3.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/hive-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
apiVersion: v2
name: hive-operator
version: "0.0.0-dev"
appVersion: "0.0.0-dev"
version: "24.7.0"
appVersion: "24.7.0"
description: The Stackable Operator for Apache Hive
home: https://github.com/stackabletech/hive-operator
maintainers:
Expand Down
48 changes: 24 additions & 24 deletions deploy/helm/hive-operator/crds/crds.yaml

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: home
version: "nightly"
version: "24.7"
prerelease: false
20 changes: 10 additions & 10 deletions docs/modules/hive/examples/getting_started/getting_started.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ cd "$(dirname "$0")"

case "$1" in
"helm")
echo "Adding 'stackable-dev' Helm Chart repository"
echo "Adding 'stackable-stable' Helm Chart repository"
# tag::helm-add-repo[]
helm repo add stackable-dev https://repo.stackable.tech/repository/helm-dev/
helm repo add stackable-stable https://repo.stackable.tech/repository/helm-stable/
# end::helm-add-repo[]
echo "Updating Helm repo"
helm repo update

echo "Installing Operators with Helm"
# tag::helm-install-operators[]
helm install --wait commons-operator stackable-dev/commons-operator --version 0.0.0-dev
helm install --wait secret-operator stackable-dev/secret-operator --version 0.0.0-dev
helm install --wait listener-operator stackable-dev/listener-operator --version 0.0.0-dev
helm install --wait hive-operator stackable-dev/hive-operator --version 0.0.0-dev
helm install --wait commons-operator stackable-stable/commons-operator --version 24.7.0
helm install --wait secret-operator stackable-stable/secret-operator --version 24.7.0
helm install --wait listener-operator stackable-stable/listener-operator --version 24.7.0
helm install --wait hive-operator stackable-stable/hive-operator --version 24.7.0
# end::helm-install-operators[]

echo "Install minio for S3"
Expand Down Expand Up @@ -87,10 +87,10 @@ if false; then
echo "Installing Operators with stackablectl"
# tag::stackablectl-install-operators[]
stackablectl operator install \
commons=0.0.0-dev \
secret=0.0.0-dev \
listener=0.0.0-dev \
hive=0.0.0-dev
commons=24.7.0 \
secret=24.7.0 \
listener=24.7.0 \
hive=24.7.0
# end::stackablectl-install-operators[]
fi

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Installed commons=0.0.0-dev operator
Installed secret=0.0.0-dev operator
Installed listener=0.0.0-dev operator
Installed hive=0.0.0-dev operator
Installed commons=24.7.0 operator
Installed secret=24.7.0 operator
Installed listener=24.7.0 operator
Installed hive=24.7.0 operator
8 changes: 4 additions & 4 deletions docs/modules/hive/examples/getting_started/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ releases:
description: Demo / Test release for Hive getting started guide
products:
commons:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
hive:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
listener:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
secret:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
2 changes: 1 addition & 1 deletion docs/modules/hive/pages/usage-guide/resources.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ metastore:
memory: "512Mi"
----

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.
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.

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

Expand Down
12 changes: 6 additions & 6 deletions docs/templating_vars.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
helm:
repo_name: stackable-dev
repo_url: https://repo.stackable.tech/repository/helm-dev/
repo_name: stackable-stable
repo_url: https://repo.stackable.tech/repository/helm-stable/
versions:
commons: 0.0.0-dev
secret: 0.0.0-dev
listener: 0.0.0-dev
hive: 0.0.0-dev
commons: 24.7.0
secret: 24.7.0
listener: 24.7.0
hive: 24.7.0
minio: 4.0.2
postgresql: 12.1.5
12 changes: 6 additions & 6 deletions tests/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ releases:
description: Integration test
products:
commons:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
secret:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
listener:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
zookeeper:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
hdfs:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0
hive:
operatorVersion: 0.0.0-dev
operatorVersion: 24.7.0

0 comments on commit a35041f

Please sign in to comment.