-
Notifications
You must be signed in to change notification settings - Fork 47
Feature: absorb spiffe-helper config into global kagenti-platform-config #437
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pdettori
merged 8 commits into
rossoctl:main
from
r3v5:absorb-spiffe-helper-config-into-global-kagenti-platform-config
Jun 24, 2026
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
555554a
feat: add HelperConfig field to SpiffeConfig schema
r3v5 0bd664d
feat: derive spiffe-helper-config CM from PlatformConfig
r3v5 6826e95
refactor: remove SpiffeHelperConf from webhook namespace/resolved config
r3v5 5dd5f31
chore: add spiffe defaults to Helm values, remove static templates
r3v5 a90fd58
fix: reconcile ownership label before content-equality check
r3v5 bb1c4aa
fix: retry AgentRuntime CR creation for webhook readiness in e2e
r3v5 661dd7f
fix: requeue on spiffe-helper-config failure, remove from template list
r3v5 67b8a5e
fix: use uncached reader for ComputeConfigHash after spiffe-helper-co…
r3v5 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
kagenti-operator/config/authbridge/spiffe-helper-config.yaml
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,4 +12,3 @@ resources: | |
|
|
||
| patches: | ||
| - path: patches/authbridge-keycloak.yaml | ||
| - path: patches/spiffe-helper-keycloak.yaml | ||
20 changes: 0 additions & 20 deletions
20
kagenti-operator/config/openshift/patches/spiffe-helper-keycloak.yaml
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible regression on the OpenShift kustomize path. This PR also deletes
patches/spiffe-helper-keycloak.yaml(and its reference here). That patch overrode the spiffe-helperjwt_audiencefrom the publickeycloak.localtest.meto the in-clusterkeycloak-service.keycloak.svc:8080/realms/kagentifor OpenShift — mirroring theauthbridge-keycloak.yamlpatch that's kept right above this line.The new single source of truth,
kagenti-platform-config, is created only by the Helm chart (templates/manager/configmap-platform-defaults.yaml). Themake deploy-openshift/kustomize build config/openshiftpath never creates it, soloader.gofalls back toCompiledDefaults()→DefaultSpiffeHelperConfig, which hardcodes the publickeycloak.localtest.me:8080audience. That won't resolve in-cluster on OpenShift.If OpenShift is still installable via this kustomize overlay, the in-cluster audience override appears lost. Two ways to resolve:
spiffe.helperConfigwith the in-cluster audience (parallel to howauthbridge-keycloak.yamlsurvives), orconfig/openshiftoverlay so it isn't left in a broken state.Could you confirm which install path OpenShift uses now?