Skip to content

Commit 5921448

Browse files
Merge branch 'main' into update-release-branch
2 parents a8306b8 + 27d7056 commit 5921448

File tree

8 files changed

+22
-41
lines changed

8 files changed

+22
-41
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@ All notable changes to this project will be documented in this file.
2424
- BREAKING: The fields `connection` and `host` on `S3Connection` as well as `bucketName` on `S3Bucket`are now mandatory ([#518]).
2525
- An invalid `HiveCluster` doesn't cause the operator to stop functioning ([#523]).
2626
- Fix upgrade path from HMS `3.3.x` to `4.0.x`. Previously the schemaTool would try to re-create the database tables and would therefore fail. Starting with version `4.0.0` the schemaTool has the flag `-initOrUpgradeSchema`, which we use to resolve that problem ([#539]).
27+
- BREAKING: Use distinct ServiceAccounts for the Stacklets, so that multiple Stacklets can be deployed in one namespace. Existing Stacklets will use the newly created ServiceAccounts after restart ([#544]).
2728

2829
[#505]: https://github.com/stackabletech/hive-operator/pull/505
2930
[#508]: https://github.com/stackabletech/hive-operator/pull/508
3031
[#518]: https://github.com/stackabletech/hive-operator/pull/518
3132
[#522]: https://github.com/stackabletech/hive-operator/pull/522
3233
[#523]: https://github.com/stackabletech/hive-operator/pull/523
3334
[#539]: https://github.com/stackabletech/hive-operator/pull/539
35+
[#544]: https://github.com/stackabletech/hive-operator/pull/544
3436

3537
## [24.7.0] - 2024-07-24
3638

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.nix

Lines changed: 7 additions & 7 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
@@ -23,7 +23,7 @@ serde = { version = "1.0", features = ["derive"] }
2323
serde_json = "1.0"
2424
serde_yaml = "0.9"
2525
snafu = "0.8"
26-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.80.0" }
26+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.82.0" }
2727
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" }
2828
strum = { version = "0.26", features = ["derive"] }
2929
tokio = { version = "1.40", features = ["full"] }

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ SHELL=/usr/bin/env bash -euo pipefail
2929
render-readme:
3030
scripts/render_readme.sh
3131

32+
render-docs:
33+
scripts/docs_templating.sh
34+
3235
## Docker related targets
3336
docker-build:
3437
docker build --force-rm --build-arg VERSION=${VERSION} -t "${DOCKER_REPO}/${ORGANIZATION}/${OPERATOR_NAME}:${VERSION}-${ARCH}" -f docker/Dockerfile .

crate-hashes.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,7 @@
22
set -euo pipefail
33

44
# DO NOT EDIT THE SCRIPT
5-
# Instead, update the j2 template, and regenerate it for dev:
6-
# cat <<EOF | jinja2 --format yaml getting_started.sh.j2 -o getting_started.sh
7-
# helm:
8-
# repo_name: stackable-dev
9-
# repo_url: https://repo.stackable.tech/repository/helm-dev/
10-
# versions:
11-
# commons: 0.0.0-dev
12-
# hive: 0.0.0-dev
13-
# listener: 0.0.0-dev
14-
# secret: 0.0.0-dev
15-
# minio: 4.0.2
16-
# postgresql: 12.1.5
17-
# EOF
5+
# Instead, update the j2 template, and regenerate it for dev with `make render-docs`.
186

197
# The getting started guide script
208
# It uses tagged regions which are included in the documentation

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

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,7 @@
22
set -euo pipefail
33

44
# DO NOT EDIT THE SCRIPT
5-
# Instead, update the j2 template, and regenerate it for dev:
6-
# cat <<EOF | jinja2 --format yaml getting_started.sh.j2 -o getting_started.sh
7-
# helm:
8-
# repo_name: stackable-dev
9-
# repo_url: https://repo.stackable.tech/repository/helm-dev/
10-
# versions:
11-
# commons: 0.0.0-dev
12-
# hive: 0.0.0-dev
13-
# listener: 0.0.0-dev
14-
# secret: 0.0.0-dev
15-
# minio: 4.0.2
16-
# postgresql: 12.1.5
17-
# EOF
5+
# Instead, update the j2 template, and regenerate it for dev with `make render-docs`.
186

197
# The getting started guide script
208
# It uses tagged regions which are included in the documentation

0 commit comments

Comments
 (0)