Signadot Control Plane
Overview
The Signadot Control Plane is one of the components of the Signadot Platform. To see a high-level view of all components, visit the architecture page.
The Signadot Control Plane maintains a secure tunnel connection with each Kubernetes cluster that has the Signadot Operator installed. It exposes the following important pieces of functionality:
- REST API to create and manage Sandboxes within connected Kubernetes clusters.
- Proxy Server allows Signadot-authenticated access to connected Kubernetes clusters.
- Artifacts API to upload Job artifacts from connected Kuberetes clusters.
- Traffic Models API which receives captured traffic triggered by Smart Tests when they opt into it, and maintains models of these captured requests and responses.
- Preview URLs - an optional way to access Sandboxes using hosted URLs.
REST API
The control plane provides a REST API hosted at api.signadot.com
which is used to interact with all entities associated with the Signadot platform. All operations related to creating or managing jobs and sandboxes are performed via this API.
The Signadot CLI and dashboard provide higher level abstractions on top of the REST API. As an end user, it is likely that you will use one of these higher-level interfaces to create and manage Sandboxes.
In addition to these interfaces, there is also the Signadot Dashboard (app.signadot.com
) that is available for administrative purposes, such as for managing users, clusters, analytics & reporting, billing etc.
Proxy Server
The Control Plane Proxy serves Signadot authenticated HTTP Connect-based proxy access to connected Kubernetes clusters.
Artifacts API
The artifacts API allows Signadot Jobs & Smart Tests to upload artifacts associated with each execution, and provides API access to these artifacts.
Traffic Models Server
The traffic models server allows Smart Tests to upload properly instrumented HTTP requests and corresponding responses if requested. The baseline portion of this captured traffic is modeled incrementally to provide relevance scoring of diffs between sandbox and baseline.
Preview Endpoints
Sandboxes can be optionally accessed via Preview URLs. These endpoints can be created as part of the sandbox specification and typically take the following form:
https://your-endpoint--your-sandbox-name.preview.signadot.com
The Signadot Control Plane hosts these endpoint URLs and provides authenticated access to them. When you access an endpoint, the following occurs under the hood:
- The Signadot Auth cookie, or Signadot API Key is validated.
- Signadot Authorization information is stripped from the request.
- The host, port and protocol of the service within the Kubernetes cluster corresponding to the endpoint is looked up.
- If the request is intended for a sandboxed workload, Headers containing the Sandbox Routing Key are injected into the request.
- Standard proxy headers such as
Forwarded
are added to the request. - A connection is established to the destination Kubernetes service over the secure tunnel via the agent in the operator.
- The request is forwarded over this connection to the destination.