add spiffe to web-ng #2659
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!2659
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "refs/pull/2659/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: #2276
Original author: @mfreeman451
Original URL: https://github.com/carverauto/serviceradar/pull/2276
Original created: 2026-01-13T06:27:08Z
Original updated: 2026-01-14T03:39:43Z
Original head: carverauto/serviceradar:update/spiffe-web-ng
Original base: staging
Original merged: 2026-01-14T03:39:34Z by @mfreeman451
User description
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
PR Type
Enhancement, Documentation
Description
Add SPIFFE support for web-ng datasvc connections in Kubernetes
Deploy serviceradar-agent-gateway via Helm with tenant-CA mTLS
Enable environment-driven mode selection for SPIFFE vs file-based mTLS
Define requirements and migration plan for idempotent Helm installs
Diagram Walkthrough
File Walkthrough
design.md
Design document for SPIFFE web-ng integrationopenspec/changes/add-spiffe-web-ng-agent-gateway/design.md
installs
file-based mTLS backward compatibility
agent-gateway deployment
proposal.md
Proposal for SPIFFE web-ng and agent-gateway supportopenspec/changes/add-spiffe-web-ng-agent-gateway/proposal.md
deployment
spec.md
Edge architecture spec for SPIFFE and agent-gatewayopenspec/changes/add-spiffe-web-ng-agent-gateway/specs/edge-architecture/spec.md
services
modes
tenant-CA mTLS
tasks.md
Implementation tasks for SPIFFE web-ng integrationopenspec/changes/add-spiffe-web-ng-agent-gateway/tasks.md
configuration
Imported GitHub PR comment.
Original author: @qodo-code-review[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/2276#issuecomment-3742229739
Original created: 2026-01-13T06:27:36Z
PR Compliance Guide 🔍
Below is a summary of compliance checks for this PR:
No security concerns identified
No security vulnerabilities detected by AI analysis. Human verification advised for critical code.🎫 No ticket provided
Codebase context is not defined
Follow the guide to enable codebase context checks.
Generic: Meaningful Naming and Self-Documenting Code
Objective: Ensure all identifiers clearly express their purpose and intent, making code
self-documenting
Status: Passed
Compliance status legend
🟢 - Fully Compliant🟡 - Partial Compliant
🔴 - Not Compliant
⚪ - Requires Further Human Verification
🏷️ - Compliance label
Imported GitHub PR comment.
Original author: @qodo-code-review[bot]
Original URL: https://github.com/carverauto/serviceradar/pull/2276#issuecomment-3742233495
Original created: 2026-01-13T06:28:33Z
PR Code Suggestions ✨
Explore these optional code suggestions:
Reconsider blanket exclusion of SPIFFE
Reconsider the decision to completely exclude
agent-gatewayfrom using SPIFFE. Amore flexible approach would be to use tenant-CA mTLS for edge-facing interfaces
while allowing SPIFFE for internal communications to maintain architectural
consistency.
openspec/changes/add-spiffe-web-ng-agent-gateway/design.md [20-21]
Suggestion importance[1-10]: 8
__
Why: This is a high-value architectural suggestion that challenges a core design decision. It correctly points out that a blanket exclusion of SPIFFE for the
agent-gatewaycould lead to future architectural inconsistency and suggests a more flexible, forward-looking approach that aligns with the overall goal of SPIFFE adoption.Use Helm schema validation for robustness
Instead of relying on comments for Helm value validation, use a
values.schema.jsonfile to enforce types, constraints, and defaults, preventingmisconfigurations.
openspec/changes/add-spiffe-web-ng-agent-gateway/design.md [24-25]
Suggestion importance[1-10]: 7
__
Why: The suggestion correctly identifies that "validation in values comments" is a weak mitigation for the identified risk. Proposing the use of a
values.schema.jsonfile is a best-practice, robust solution that significantly improves the quality and reliability of the proposed Helm chart implementation.