Documentation ¶
Overview ¶
Package aggregation is responsible for hosting an HTTP server which aggregates results from all of the nodes that are running sonobuoy agent. It is not responsible for dispatching the nodes (see pkg/dispatch), only expecting their results.
Index ¶
- Constants
- func Cleanup(client kubernetes.Interface, plugins []plugin.Interface)
- func GlobalResultURL(baseURL, pluginName string) (string, error)
- func NewHandler(resultsCallback func(*plugin.Result, http.ResponseWriter)) http.Handler
- func NodeResultURL(baseURL, nodeName, pluginName string) (string, error)
- func Run(client kubernetes.Interface, plugins []plugin.Interface, ...) error
- type Aggregator
- type Handler
- type PluginStatus
- type Status
Constants ¶
const ( // RunningStatus means the sonobuoy run is still in progress. RunningStatus string = "running" // CompleteStatus means the sonobuoy run is complete. CompleteStatus string = "complete" // FailedStatus means one or more plugins has failed and the run will not complete successfully. FailedStatus string = "failed" )
const ( StatusAnnotationName = "sonobuoy.hept.io/status" StatusPodName = "sonobuoy" )
Variables ¶
This section is empty.
Functions ¶
func Cleanup ¶
func Cleanup(client kubernetes.Interface, plugins []plugin.Interface)
Cleanup calls cleanup on all plugins
func GlobalResultURL ¶ added in v0.11.0
GlobalResultURL is the URL that results that are not node-specific. Takes the baseURL (http[s]://hostname:port/, with trailing slash) pluginName, and an optional extension. If multiple extensions are provided, only the first one is used.
func NewHandler ¶ added in v0.11.0
NewHandler constructs a new aggregation handler which will handler results and pass them to the given results callback.
func NodeResultURL ¶ added in v0.11.0
NodeResultURL is the URL for results for a given node result. Takes the baseURL (http[s]://hostname:port/, with trailing slash) nodeName, pluginName, and an optional extension. If multiple extensions are provided, only the first one is used.
func Run ¶
func Run(client kubernetes.Interface, plugins []plugin.Interface, cfg plugin.AggregationConfig, namespace, outdir string) error
Run runs an aggregation server and gathers results, in accordance with the given sonobuoy configuration.
Basic workflow:
- Create the aggregator object (`aggr`) to keep track of results
- Launch the HTTP server with the aggr's HandleHTTPResult function as the callback
- Run all the aggregation plugins, monitoring each one in a goroutine, configuring them to send failure results through a shared channel
- Hook the shared monitoring channel up to aggr's IngestResults() function
- Block until aggr shows all results accounted for (results come in through the HTTP callback), stopping the HTTP server on completion
Types ¶
type Aggregator ¶
type Aggregator struct { // OutputDir is the directory to write the node results OutputDir string // Results stores a map of check-in results the server has seen Results map[string]*plugin.Result // ExpectedResults stores a map of results the server should expect ExpectedResults map[string]*plugin.ExpectedResult // contains filtered or unexported fields }
Aggregator is responsible for taking results from an HTTP server (configured elsewhere), saving them to the filesystem, and keeping track of what has been seen so far, so that we can return when all expected results are present and accounted for.
func NewAggregator ¶
func NewAggregator(outputDir string, expected []plugin.ExpectedResult) *Aggregator
NewAggregator constructs a new Aggregator object to write the given result set out to the given output directory.
func (*Aggregator) HandleHTTPResult ¶
func (a *Aggregator) HandleHTTPResult(result *plugin.Result, w http.ResponseWriter)
HandleHTTPResult is called every time the HTTP server gets a well-formed request with results. This method is responsible for returning with things like a 409 conflict if a node has checked in twice (or a 403 forbidden if a node isn't expected), as well as actually calling handleResult to write the results to OutputDir.
func (*Aggregator) IngestResults ¶
func (a *Aggregator) IngestResults(resultsCh <-chan *plugin.Result)
IngestResults takes a channel of results and handles them as they come in. Since most plugins submit over HTTP, this method is currently only used to consume an error stream from each plugin's Monitor() function.
If we support plugins that are just simple commands that the sonobuoy master runs, those plugins can submit results through the same channel.
func (*Aggregator) Wait ¶
func (a *Aggregator) Wait(stop chan bool)
Wait blocks until all expected results have come in.
type Handler ¶ added in v0.11.0
type Handler struct { mux.Router // ResultsCallback is the function that is called when a result is checked in. ResultsCallback func(*plugin.Result, http.ResponseWriter) }
Handler is a net/http Handler that can handle API requests for aggregation of results from nodes, calling the provided callback with the results
type PluginStatus ¶ added in v0.11.0
type PluginStatus struct { Plugin string `json:"plugin"` Node string `json:"node"` Status string `json:"status"` }
PluginStatus represents the current status of an individual plugin.
type Status ¶ added in v0.11.0
type Status struct { Plugins []PluginStatus `json:"plugins"` Status string `json:"status"` }
Status represents the current status of a Sonobuoy run. TODO(EKF): Find a better name for this struct/package.