Set explicit TLS minimum version for Quay HTTP client#315
Open
MartinBasti wants to merge 1 commit into
Open
Conversation
Explicitly set MinVersion to TLS 1.2 on the tls.Config used for the Quay HTTP client as a defense-in-depth measure against potential TLS downgrade. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Martin Basti <mbasti@redhat.com>
Review Summary by QodoEnforce TLS 1.2 minimum version for Quay client
WalkthroughsDescription• Enforce TLS 1.2 minimum version for Quay HTTP client • Adds defense-in-depth protection against TLS downgrade attacks • Improves security posture of client connections Diagramflowchart LR
A["TLS Configuration"] -- "Add MinVersion constraint" --> B["TLS 1.2 minimum enforced"]
B -- "Prevents downgrade attacks" --> C["Enhanced security"]
File Changes1. cmd/main.go
|
Contributor
Author
|
/retest |
|
Scenario: konflux-e2e-image-controller
Inspecting Test ArtifactsTo inspect your test artifacts, follow these steps:
mkdir -p oras-artifacts
cd oras-artifacts
oras pull quay.io/konflux-test-storage/konflux-team/image-controller:konflux-e2e-image-controller-n25v7Test results analysis🚨 Error occurred while running the E2E tests, list of failed Spec(s): ➡️ [ Click to view logsUnexpected error:
<*errors.errorString | 0xc0003068f0>:
failed to create test namespace build-e2e-yapj: timeout waiting for service account konflux-integration-runner to be created in namespace build-e2e-yapj with error: context deadline exceeded
{
s: "failed to create test namespace build-e2e-yapj: timeout waiting for service account konflux-integration-runner to be created in namespace build-e2e-yapj with error: context deadline exceeded",
}
occurredOCI Artifact Browser URL |
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.
Explicitly set MinVersion to TLS 1.2 on the tls.Config used for the Quay HTTP client as a defense-in-depth measure against potential TLS downgrade.