Update/agent updater #3102
No reviewers
Labels
No labels
1week
2weeks
Failed compliance check
IP cameras
NATS
Possible security concern
Review effort 1/5
Review effort 2/5
Review effort 3/5
Review effort 4/5
Review effort 5/5
UI
aardvark
accessibility
amd64
api
arm64
auth
back-end
bgp
blog
bug
build
checkers
ci-cd
cleanup
cnpg
codex
core
dependencies
device-management
documentation
duplicate
dusk
ebpf
enhancement
eta 1d
eta 1hr
eta 3d
eta 3hr
feature
fieldsurvey
github_actions
go
good first issue
help wanted
invalid
javascript
k8s
log-collector
mapper
mtr
needs-triage
netflow
network-sweep
observability
oracle
otel
plug-in
proton
python
question
reddit
redhat
research
rperf
rperf-checker
rust
sdk
security
serviceradar-agent
serviceradar-agent-gateway
serviceradar-web
serviceradar-web-ng
siem
snmp
sysmon
topology
ubiquiti
wasm
wontfix
zen-engine
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
carverauto/serviceradar!3102
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "refs/pull/3102/head"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Imported from GitHub pull request.
Original GitHub pull request: #3104
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/pull/3104
Original created: 2026-03-30T19:40:44Z
Original updated: 2026-03-30T19:46:37Z
Original head: carverauto/serviceradar:update/agent-updater
Original base: staging
Original merged: 2026-03-30T19:41:07Z by @mfreeman451
IMPORTANT: Please sign the Developer Certificate of Origin
Thank you for your contribution to ServiceRadar. Please note, when contributing, the developer must include
a DCO sign-off statement indicating the DCO acceptance in one commit message. Here
is an example DCO Signed-off-by line in a commit message:
Describe your changes
Issue ticket number and link
Code checklist before requesting a review
Imported GitHub PR review comment.
Original author: @Copilot
Original URL: https://github.com/carverauto/serviceradar/pull/3104#discussion_r3011852407
Original created: 2026-03-30T19:46:36Z
Original path: helm/serviceradar/templates/web.yaml
Original line: 250
DATASVC_ENABLEDis now hard-coded to "true" for the web-ng deployment. This is a behavioral change from prior chart versions and forces datasvc client startup even when a datasvc endpoint isn't deployed/configured, which can lead to noisy reconnect loops and unnecessary resource usage. Consider making this value configurable viavalues.yaml(e.g.,webNg.datasvcEnabled) and defaulting to the previous behavior, or gating it on datasvc connectivity being configured.Imported GitHub PR review comment.
Original author: @Copilot
Original URL: https://github.com/carverauto/serviceradar/pull/3104#discussion_r3011852438
Original created: 2026-03-30T19:46:36Z
Original path: elixir/serviceradar_core/lib/serviceradar/data_service/client.ex
Original line: 600
disconnect_direct_channel/1attempts to close the direct gRPC channel viaadapter.disconnect/1, but the rest of the codebase consistently usesGRPC.Stub.disconnect/1(e.g.,elixir/serviceradar_core/lib/serviceradar/spiffe/workload_api.ex:175-181). If the adapter doesn't implementdisconnect/1, the fallback path can leak connections. Prefer callingGRPC.Stub.disconnect(channel)(wrapped in rescue/catch like the existingsafe_disconnect/1helper) to reliably close channels.Imported GitHub PR review comment.
Original author: @Copilot
Original URL: https://github.com/carverauto/serviceradar/pull/3104#discussion_r3011852468
Original created: 2026-03-30T19:46:37Z
Original path: elixir/serviceradar_core/test/serviceradar/data_service/client_test.exs
Original line: 10
This test assumes
ServiceRadar.DataService.Clientis not running (refute Process.whereis(Client)), buttest/test_helper.exsstarts the full core app whenever a test DB env var is set; in that mode the client is typically started (seeServiceRadar.Application.datasvc_client_child/0). This makes the test brittle for integration runs. Consider making the test deterministic by explicitly stopping/ensuring the client isn’t started in setup, or by isolating it under the same conditions as the "core not started" unit-test mode (e.g., tagging/excluding it when the full app is started).Imported GitHub PR review comment.
Original author: @Copilot
Original URL: https://github.com/carverauto/serviceradar/pull/3104#discussion_r3011852496
Original created: 2026-03-30T19:46:37Z
Original path: CHANGELOG
Original line: 10
The changelog claims a new "manual GitHub Actions workflow" was added for deriving
SERVICERADAR_AGENT_RELEASE_PUBLIC_KEY, but this PR doesn’t include any new/updated workflow under.github/workflows/(and there are no workflow references to that env var). Please either include the workflow changes in this PR or remove this bullet so the release notes match what actually shipped.