-
Notifications
You must be signed in to change notification settings - Fork 73
chore(deps): Update images, deps, move CAPI to v1beta2 #1660
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
Conversation
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
…t digest to 8ebd0ff Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
…to 546029d Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
…to 546029d Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
…rpc to v1.6.1 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
…r tag to v9.7-1770267347 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
…n/net/http/otelhttp to v0.65.0 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
…erator/pkg/apis/monitoring to v0.89.0 Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
…golang.org-genproto-googleapis-api-digest' into update_deps_20260206
…golang.org-genproto-googleapis-rpc-digest' into update_deps_20260206 # Conflicts: # go.mod # go.sum
…s.io-controller-runtime-tools-setup-envtest-digest' into update_deps_20260206
…com-miekg-dns-1.x' into update_deps_20260206
…com-tinylib-msgp-1.x' into update_deps_20260206
…tes-go' into update_deps_20260206
…com-googleapis-gax-go-v2-2.x' into update_deps_20260206
…com-pires-go-proxyproto-0.x' into update_deps_20260206
…golang.org-grpc-cmd-protoc-gen-go-grpc-1.x' into update_deps_20260206
…emetry-go-contrib-monorepo' into update_deps_20260206 # Conflicts: # go.mod
…y.access.redhat.com-ubi9-ubi-minimal-9.x' into update_deps_20260206
….sm-crypto-0.x' into update_deps_20260206 # Conflicts: # go.mod
…golang.org-api-0.x' into update_deps_20260206 # Conflicts: # go.mod # go.sum
…emetry-go-monorepo' into update_deps_20260206 # Conflicts: # go.mod
…com-lib-pq-1.x' into update_deps_20260206
…com-prometheus-operator-prometheus-operator-pkg-apis-monitoring-0.x' into update_deps_20260206
…s.io-cluster-api-1.x' into update_deps_20260206
…s.io-controller-runtime-0.x' into update_deps_20260206 # Conflicts: # go.mod
…ubernetes-go' into update_deps_20260206 # Conflicts: # go.mod
Migrates all CRD status conditions from cluster-api v1beta2.Condition to standard Kubernetes metav1.Condition to fix type compatibility issues with the conditions utility package. Changes: - Update ClowdApp, ClowdEnvironment, ClowdJobInvocation, and ClowdAppRef status types to use []metav1.Condition - Update condition type constants from clusterv1.ConditionType to string - Update SetClowdEnvConditions, SetClowdAppConditions, and SetClowdJobInvocationConditions to use metav1 types - Remove unused cluster-api imports - Regenerate CRD manifests and deepcopy methods Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
Contributor
Author
|
/test-e2e |
Contributor
Author
|
Lots of e2e test failures. Migrating condition types from cluster-api to metav1.Condition has probably caused some issues. |
Ensures all metav1.Condition instances have valid Reason values to satisfy API validation requirements. The Reason field must be a non-empty CamelCase identifier. Changes: - Set default Reason values for all condition states: * ReconciliationNotComplete/ReconciliationSucceeded/ReconciliationFailed * DeploymentsNotReady/DeploymentsReady * JobsIncomplete/JobsComplete - Move error details from Reason to Message field (Reason must be CamelCase, Message can contain full error text) - Preserves existing behavior of including detailed error messages while meeting metav1.Condition validation requirements Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
Updates test-clowder-jobs assertions to expect CamelCase reason values with detailed error messages in the message field, matching the new metav1.Condition structure. Changes: - reason: 'Job [hello-cji-disabled] is disabled: ' → reason: JobsIncomplete, message: 'Job [hello-cji-disabled]...' - reason: 'Job [hello-cji-disabled] is disabled: ' (ReconciliationFailed) → reason: ReconciliationFailed, message: 'Job [hello-cji-disabled]...' - Added missing reason field for ReconciliationSuccessful condition Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
Contributor
Author
|
/test-e2e |
1 similar comment
Contributor
Author
|
/test-e2e |
This was referenced Feb 7, 2026
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
This PR combines 19 individual dependency update PRs from red-hat-konflux into a single update:
Go Module Updates:
Docker Image Updates:
Important Notes:
Test plan
🤖 Generated with Claude Code