File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
rust/operator-binary/src/authentication
tests/templates/kuttl/oidc Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ use stackable_druid_crd::{
66} ;
77use 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments