Skip to content

[Backport 7.67.x] [AGENTRUN-310] Fix FIPS Agent status output #37805

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
merged 2 commits into from
Jun 11, 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
3 changes: 1 addition & 2 deletions comp/core/status/statusimpl/common_header_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ func populateConfig(config config.Component) map[string]string {
conf["additional_checksd"] = config.GetString("additional_checksd")

isFipsAgent, _ := fips.Enabled()
isFIPS := config.GetBool("fips.enabled") || isFipsAgent
conf["fips_proxy_enabled"] = strconv.FormatBool(isFIPS)
conf["fips_proxy_enabled"] = strconv.FormatBool(config.GetBool("fips.enabled") && !isFipsAgent)
conf["fips_local_address"] = config.GetString("fips.local_address")
conf["fips_port_range_start"] = config.GetString("fips.port_range_start")

Expand Down
11 changes: 11 additions & 0 deletions releasenotes/notes/fix_fips_agent_status-ad9cf20c53bdec9e.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 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:
- |
Remove the FIPS Proxy status section from the Agent status page when running the FIPS Agent.