fix: update nudge chain for cli-stack architecture#534
Merged
Conversation
Client-server now consumes cli-stack images instead of component images directly. Update the nudge chain from: component → [cli-stack, client-server] to: component → cli-stack → client-server Remove client-server from component nudges (cosign, gitsign, rekor-cli, fetch-tsa-certs, updatetree, createtree, tuf-tool) and add it to cli-stack nudges (cosign, gitsign, rekor, fetch-tsa-certs, trillian, tuftool) so rebuilds cascade correctly. Signed-off-by: Sachin Sampras M <sampras343@gmail.com>
Configuration Diff13 document(s) impacted: + 0 added
- 0 removed
! 13 modifiedDiff@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/gitsign-cli-stack{{.nameSuffix}}.spec @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/cli-stacks-template
! + one map entry added:
+ build-nudges-ref:
+ - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/cosign-cli-stack{{.nameSuffix}}.spec @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/cli-stacks-template
! + one map entry added:
+ build-nudges-ref:
+ - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/rekor-cli-stack{{.nameSuffix}}.spec @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/cli-stacks-template
! + one map entry added:
+ build-nudges-ref:
+ - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/trillian-cli-stack{{.nameSuffix}}.spec @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/cli-stacks-template
! + one map entry added:
+ build-nudges-ref:
+ - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/fetch-tsa-certs-cli-stack{{.nameSuffix}}.spec @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/cli-stacks-template
! + one map entry added:
+ build-nudges-ref:
+ - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/tuftool-cli-stack{{.nameSuffix}}.spec @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/cli-stacks-template
! + one map entry added:
+ build-nudges-ref:
+ - client-server{{.nameSuffix}}
@@ spec.resources.Component.spec.build-nudges-ref @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/create-tree-template
! - one list entry removed:
- - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/cosign{{.nameSuffix}}.spec.build-nudges-ref @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/tas-tools-template
! - one list entry removed:
- - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/fetch-tsa-certs{{.nameSuffix}}.spec.build-nudges-ref @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/tas-tools-template
! - one list entry removed:
- - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/gitsign{{.nameSuffix}}.spec.build-nudges-ref @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/tas-tools-template
! - one list entry removed:
- - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/updatetree{{.nameSuffix}}.spec.build-nudges-ref @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/tas-tools-template
! - one list entry removed:
- - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/rekor-cli{{.nameSuffix}}.spec.build-nudges-ref @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/tas-tools-template
! - one list entry removed:
- - client-server{{.nameSuffix}}
@@ spec.resources.appstudio.redhat.com/v1alpha1/Component/tuf-tool{{.nameSuffix}}.spec.build-nudges-ref @@
# projctl.konflux.dev/v1beta1/ProjectDevelopmentStreamTemplate/rhtas-tenant/tough-template
! - one list entry removed:
- - client-server{{.nameSuffix}}📦 Artifacts: base-output.yaml, head-output.yaml, dyff-output.txt |
osmman
approved these changes
Jun 25, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Client-server now consumes cli-stack images instead of component images directly. Update the nudge chain from:
to:
Changes
Removed
client-serverfrom component nudges (7 files):tas-tools/cosign.yaml,gitsign.yaml,rekor-cli.yaml,fetch-tsa.yaml,update-tree.yamlcreate-tree/create-tree.yamltough/tuf-tool.yamlAdded
client-serverto cli-stack nudges (6 files):cli-stacks/cosign-cli-stack.yaml,gitsign-cli-stack.yaml,rekor-cli-stack.yamlcli-stacks/fetch-tsa-certs-cli-stack.yaml,trillian-cli-stack.yaml,tuftool-cli-stack.yamlThis ensures the correct build order: component rebuilds → nudges cli-stack → cli-stack rebuilds → nudges client-server → client-server rebuilds with updated cli-stack digests.
Test plan