Skip to content

Commit c03ba9d

Browse files
Merge pull request #674 from stackabletech/update-release-branch
Update release branch
2 parents 7421448 + ad96ac2 commit c03ba9d

File tree

15 files changed

+62
-56
lines changed

15 files changed

+62
-56
lines changed

CHANGELOG.md

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

55
## [Unreleased]
66

7+
### Fixed
8+
9+
- Fix OIDC endpoint construction in case the `rootPath` does have a trailing slash ([#673]).
10+
- BREAKING: Use distinct ServiceAccounts for the Stacklets, so that multiple Stacklets can be
11+
deployed in one namespace. Existing Stacklets will use the newly created ServiceAccounts after
12+
restart ([#672]).
13+
14+
[#672]: https://github.com/stackabletech/trino-operator/pull/672
15+
[#673]: https://github.com/stackabletech/trino-operator/pull/673
16+
717
## [24.11.0] - 2024-11-18
818

919
### Added

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
@@ -24,7 +24,7 @@ serde = { version = "1.0", features = ["derive"] }
2424
serde_json = "1.0"
2525
serde_yaml = "0.9"
2626
snafu = "0.8"
27-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.80.0" }
27+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.82.0" }
2828
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" }
2929
strum = { version = "0.26", features = ["derive"] }
3030
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/trino/examples/getting_started/code/getting_started.sh

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +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-
# listener: 0.0.0-dev
13-
# secret: 0.0.0-dev
14-
# trino: 0.0.0-dev
15-
# EOF
5+
# Instead, update the j2 template, and regenerate it for dev with `make render-docs`.
166

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

docs/modules/trino/examples/getting_started/code/getting_started.sh.j2

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +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-
# listener: 0.0.0-dev
13-
# secret: 0.0.0-dev
14-
# trino: 0.0.0-dev
15-
# EOF
5+
# Instead, update the j2 template, and regenerate it for dev with `make render-docs`.
166

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

docs/modules/trino/examples/usage-guide/trino-oidc-auth-snippet.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
oidc:
2222
hostname: keycloak.default.svc.cluster.local
2323
port: 8080
24-
rootPath: /realms/stackable
24+
rootPath: /realms/stackable/
2525
scopes:
2626
- openid
2727
principalClaim: preferred_username

examples/simple-trino-oauth2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ spec:
5353
oidc:
5454
hostname: keycloak
5555
port: 8080
56-
rootPath: /realms/stackable
56+
rootPath: /realms/stackable/
5757
scopes: ["openid"]
5858
principalClaim: preferred_username
5959
---

0 commit comments

Comments
 (0)