fix: wasm plugin updates #3080
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!3080
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "refs/pull/3080/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: #3081
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/pull/3081
Original created: 2026-03-25T23:55:16Z
Original updated: 2026-03-26T00:31:50Z
Original head: carverauto/serviceradar:update/wasm-updates-plugins
Original base: staging
Original merged: 2026-03-26T00:31:48Z 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/3081#discussion_r2991738748
Original created: 2026-03-25T23:59:49Z
Original path: go/cmd/wasm-plugins/axis/config.stream.schema.json
Original line: 19
The streaming config schema defines a plain
passwordfield. WithoutsecretRef: true(and the_secret_refnaming pattern used elsewhere), the UI will render/store the password as a normal text value, which can expose credentials. Consider changing this topassword_secret_refwithsecretRef: trueso runtime params still resolve topasswordwhile keeping secrets encrypted/redacted in storage/UI.Imported GitHub PR review comment.
Original author: @Copilot
Original URL: https://github.com/carverauto/serviceradar/pull/3081#discussion_r2991738780
Original created: 2026-03-25T23:59:50Z
Original path: go/cmd/wasm-plugins/axis/README.md
Original line: 37
The README still references
manifest.stream.jsonearlier in the file, but this section now documentsplugin.stream.yaml. Please update the remainingmanifest.stream.jsonmention(s) to avoid confusing users about the expected package artifacts.Imported GitHub PR review comment.
Original author: @Copilot
Original URL: https://github.com/carverauto/serviceradar/pull/3081#discussion_r2991738800
Original created: 2026-03-25T23:59:50Z
Original path: go/cmd/wasm-plugins/unifi-protect/config.schema.json
Original line: 27
This schema models credentials as plain string fields (
password, and alsoapi_key/cookie). Since config schemas drive UI rendering and stored params, this can expose secrets as normal text values. Consider using secret refs instead (e.g.,password_secret_ref/api_key_secret_ref/cookie_secret_refwithsecretRef: true) so runtime params still resolve topassword/api_key/cookiewhile keeping secrets encrypted/redacted.Imported GitHub PR review comment.
Original author: @Copilot
Original URL: https://github.com/carverauto/serviceradar/pull/3081#discussion_r2991738825
Original created: 2026-03-25T23:59:50Z
Original path: go/cmd/wasm-plugins/unifi-protect/config.stream.schema.json
Original line: 27
This streaming schema includes plain-text credential fields (
password, and alsoapi_key/cookie). Because schemas are used for UI + stored params, these should be modeled as secret refs (e.g.,*_secret_refwithsecretRef: true) to avoid credential exposure while still resolving to runtime fields.