feat: Hecate: Tunnel & Pathway Manager#975
Merged
Wikid82 merged 44 commits intodevelopmentfrom Apr 27, 2026
Merged
Conversation
…for enhanced proxy management
This was
linked to
issues
Apr 26, 2026
Contributor
✅ Supply Chain Verification Results✅ PASSED 📦 SBOM Summary
🔍 Vulnerability Scan
📎 Artifacts
Generated by Supply Chain Verification workflow • View Details |
Contributor
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
…e listing functionality
- Register Hecate TunnelManager with all provider factories in routes - Add Orthrus CA initialization and WebSocket endpoint registration - Introduce OrthrusAddrResolver interface to break caddy to orthrus import cycle - Implement resolveOrthrusHosts for dynamic orthrus:<uuid> upstream resolution - Add SetOrthrusServer to caddy.Manager for live agent proxy addr injection - Fix race condition in Orthrus WebSocket session registration test
…or tunnel logs Co-authored-by: Copilot <copilot@github.com>
…itialization error handling
Comment on lines
+161
to
+164
| logger.Log().WithFields(logrus.Fields{ | ||
| "uuid": uuid, | ||
| "provider": string(cfg.Provider), | ||
| }).Warn("hecate: no factory registered for provider type, skipping") |
Comment on lines
+296
to
+300
| logger.Log().WithFields(logrus.Fields{ | ||
| "uuid": uuid, | ||
| "state": string(state), | ||
| "delay": delay.String(), | ||
| }).Warn("hecate: tunnel in error/stopped state, scheduling restart") |
Comment on lines
+316
to
+319
| logger.Log().WithFields(logrus.Fields{ | ||
| "uuid": uuid, | ||
| "error": err.Error(), | ||
| }).Error("hecate: failed to restart tunnel") |
…lang.org/x/sys v0.33.0 to go.work.sum Co-authored-by: Copilot <copilot@github.com>
…et support and CLI flags
… session management
| // handleDockerStream proxies the stream to the local Docker socket through the Muzzle filter. | ||
| func (l *Leash) handleDockerStream(stream *yamux.Stream) { | ||
| if err := l.filter.ServeProxy(l.dockerSock, stream, stream); err != nil { | ||
| l.log.WithError(err).Debug("leash: docker proxy stream closed") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
placeholder...