Skip to content
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

[AGENTRUN-162] Disable X25519Kyber768Draft00 in the agent #34626

Merged
merged 1 commit into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ go 1.23.0

toolchain go1.23.6

// Disable experimental post-quantum key exchange mechanism X25519Kyber768Draft00
// This was causing errors with AWS Network Firewall
// See https://github.com/DataDog/datadog-agent/issues/34323 for details.
// This will be revisited once we update to 1.24.x
godebug tlskyber=0

// v0.8.0 was tagged long ago, and appared on pkg.go.dev. We do not want any tagged version
// to appear there. The trick to accomplish this is to make a new version (in this case v0.9.0)
// that retracts itself and the previous version.
Expand Down
6 changes: 6 additions & 0 deletions go.work
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ go 1.23.5

toolchain go1.23.6

// Disable experimental post-quantum key exchange mechanism X25519Kyber768Draft00
// This was causing errors with AWS Network Firewall
// See https://github.com/DataDog/datadog-agent/issues/34323 for details.
// This will be revisited once we update to 1.24.x
godebug tlskyber=0

use (
.
comp/api/api/def
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Each section from every release note are combined when the
# CHANGELOG.rst is rendered. So the text needs to be worded so that
# it does not depend on any information only available in another
# section. This may mean repeating some details, but each section
# must be readable independently of the other.
#
# Each section note must be formatted as reStructuredText.
---
fixes:
- |
Disable the X25519Kyber768Draft00 key exchange mechanism to avoid issues with
firewalls not supporting it, in particular AWS Network Firewall.
Loading