Skip to content

Commit 29c3573

Browse files
Use patched version of op-rs that hopefully addresses SUP-148. (#717)
* Use patched version of op-rs that hopefully addresses SUP-148. * Updated cargo.lock to include new commits in op-rs pr (should be no significant changes, pretty much just comments and tests). * Update revision of PR branch. * Update revision of PR branch. * Update to use released version of operator-rs and add Changelog entry. * Change test condition to look for 'succeeded' instead of 'ready', as ready only becomes 1 for a brief moment and apparently kuttl can miss that.. * Run pre-commit --------- Co-authored-by: Siegfried Weber <mail@siegfriedweber.net>
1 parent c851f51 commit 29c3573

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ All notable changes to this project will be documented in this file.
3131
- Failing to parse one `NifiCluster`/`AuthenticationClass` should no longer cause the whole operator to stop functioning ([#662]).
3232
- NiFi will now use the JDK trust store when an OIDC provider uses WebPKI as CA ([#686], [#698]).
3333
- Fix OIDC endpoint construction in case the `rootPath` does not have a trailing slash ([#718]).
34+
- 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 ([#717]).
3435

3536
### Removed
3637

@@ -51,6 +52,7 @@ All notable changes to this project will be documented in this file.
5152
[#698]: https://github.com/stackabletech/nifi-operator/pull/698
5253
[#702]: https://github.com/stackabletech/nifi-operator/pull/702
5354
[#708]: https://github.com/stackabletech/nifi-operator/pull/708
55+
[#717]: https://github.com/stackabletech/nifi-operator/pull/717
5456
[#718]: https://github.com/stackabletech/nifi-operator/pull/718
5557

5658
## [24.7.0] - 2024-07-24

tests/templates/kuttl/oidc/12_nifi.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spec:
3030
clusterConfig:
3131
authentication:
3232
- authenticationClass: nifi-oidc-auth-class-$NAMESPACE
33-
oidc:
33+
oidc:
3434
clientCredentialsSecret: nifi-oidc-client
3535
sensitiveProperties:
3636
keySecret: nifi-sensitive-property-key

tests/templates/kuttl/oidc/20-assert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ kind: Job
88
metadata:
99
name: oidc-login-test
1010
status:
11-
ready: 1 # wait for the test job to start before streaming its logs in the next test step
11+
succeeded: 1 # wait for the test job to start before streaming its logs in the next test step

0 commit comments

Comments
 (0)