Skip to content

Commit 58c2ff0

Browse files
committed
add changelog entry
1 parent ef5e7b6 commit 58c2ff0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file.
2424

2525
- BREAKING: The fields `connection` and `host` on `S3Connection` as well as `bucketName` on `S3Bucket`are now mandatory ([#632]).
2626
- Failing to parse one `DruidCluster`/`AuthenticationClass` should no longer cause the whole operator to stop functioning ([#638]).
27+
- Fix OIDC endpoint calculation in case the `rootPath` does have a trailing slash ([#656]).
2728

2829
### Removed
2930

@@ -37,6 +38,7 @@ All notable changes to this project will be documented in this file.
3738
[#632]: https://github.com/stackabletech/druid-operator/pull/632
3839
[#637]: https://github.com/stackabletech/druid-operator/pull/637
3940
[#638]: https://github.com/stackabletech/druid-operator/pull/638
41+
[#656]: https://github.com/stackabletech/druid-operator/pull/656
4042

4143
## [24.7.0] - 2024-07-24
4244

rust/operator-binary/src/authentication/oidc.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ use stackable_druid_crd::{
66
};
77
use stackable_operator::{
88
builder::pod::{container::ContainerBuilder, PodBuilder},
9-
commons::authentication::oidc::{
10-
AuthenticationProvider, ClientAuthenticationOptions,
11-
},
9+
commons::authentication::oidc::{AuthenticationProvider, ClientAuthenticationOptions},
1210
k8s_openapi::api::core::v1::EnvVar,
1311
};
1412

tests/templates/kuttl/oidc/35_authentication-class.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
provider:
88
oidc:
99
hostname: keycloak.$NAMESPACE.svc.cluster.local
10-
rootPath: /realms/test
10+
rootPath: /realms/test/
1111
principalClaim: preferred_username
1212
scopes:
1313
- openid

0 commit comments

Comments
 (0)