| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Stream any app to your browser
An open source, platform-agnostic container streaming platform
Features • Quick Start • Architecture • Documentation • Contributing
Warning
Active rebuild — April 2026. The control plane and agents work, but the end-to-end streaming pipeline (image build, template catalog wiring, golden-path test) is being reconstructed. The historical v2.0-beta.1 docs are preserved under docs/historical/ for context.
StreamSpace delivers browser-based access to containerized applications. A central Control Plane (API + WebUI) brokers sessions to distributed Agents running on Kubernetes today and Docker next.
Streaming uses Selkies-GStreamer (WebRTC) end-to-end. Earlier VNC code paths were removed in favor of a single, well-supported protocol.
| Repo | What it owns |
|---|---|
| streamspace-dev/streamspace (this repo) | Control Plane API, K8s/Docker agents, Web UI, Helm chart |
| streamspace-dev/streamspace-templates | Application templates (CRD manifests) and the source + build pipeline for custom container images (ghcr.io/streamspace-dev/<image>) |
| streamspace-dev/streamspace-plugins | Optional plugins (auth, storage, observability, billing, …) |
| streamspace-dev/streamspace.wiki | End-user documentation (Getting Started, Architecture overview, Plugin/Template catalogs) |
| Core | Enterprise |
|---|---|
| Browser-based streaming over WebRTC | SSO: SAML 2.0, OIDC, OAuth2 |
| Multi-tenancy with org scoping | MFA with TOTP |
| Persistent home directories | Audit logging & compliance |
| Auto-hibernation (scale to zero) | IP allow-listing & rate limiting |
| Custom image pipeline (cosign + SBOM) | Webhooks (16 event types) |
| Grafana dashboards | Prometheus alerts |
Note
This is the dev/contributor flow. For production deployment see docs/DEPLOYMENT.md.
git clone https://github.com/streamspace-dev/streamspace.git
cd streamspace
kubectl apply -f manifests/crds/
helm install streamspace ./chart -n streamspace --create-namespacekubectl apply -f - <<'EOF'
apiVersion: stream.space/v1alpha1
kind: Session
metadata:
name: my-chrome
namespace: streamspace
spec:
user: john
template: chrome-selkies
state: running
resources:
memory: 2Gi
EOFThe chrome-selkies template is the seeded default. The control plane proxies /api/v1/http/<session-id>/ to the session pod's Selkies endpoint on port 8080.
Tip
Update default secrets before any production deployment — see docs/DEPLOYMENT.md.
graph TD
User[User / Browser] -->|HTTPS| Ingress[Load Balancer]
Ingress -->|HTTPS| UI[Web UI]
Ingress -->|HTTPS / WSS| API[Control Plane API]
subgraph "Control Plane"
UI
API
Hub[Agent WebSocket Hub]
Selkies[Selkies HTTP/WebRTC Proxy]
DB[(PostgreSQL)]
API --> DB
API --> Hub
API --> Selkies
end
subgraph "Execution Plane — Kubernetes"
K8sAgent[K8s Agent]
K8sAgent <-->|WebSocket| Hub
K8sAgent -->|Manage| Pods[Session Pods]
Selkies -.->|HTTP/WS| Pods
end
subgraph "Execution Plane — Docker"
DockerAgent[Docker Agent]
DockerAgent <-->|WebSocket| Hub
DockerAgent -->|Manage| Containers[Session Containers]
end
Components
For the deeper technical reference, see docs/ARCHITECTURE.md. Frozen v2 architecture snapshots live in docs/historical/.
Templates live in streamspace-templates. The image-build pipeline in that repo publishes signed images to ghcr.io/streamspace-dev/<image> with cosign keyless signatures and SPDX SBOM attestations.
Currently published:
Note
The package on GHCR may be private by default. Org admin can flip it to public via the package settings page. Once public, anonymous pulls and the cosign verification command in streamspace-templates/images/README.md work without auth.
A Selkies-native catalog (Firefox, VS Code, full desktops, etc.) is being added on top of the same pipeline.
# Build K8s Agent
cd agents/k8s-agent && go build -o k8s-agent .
# Build API
cd api && go build -o streamspace-api ./cmd
# Build UI
cd ui && npm install && npm run build
# Run all Go tests under -race
go test -race ./...See docs/TESTING.md for the full test guide.
Contributions welcome — start with CONTRIBUTING.md. The workflow is the standard fork → branch → PR pattern; see the project's issue board for triaged work.
StreamSpace is licensed under the MIT License.
| Back | FazBrowse Home | New Git URL |