Documentation ¶
Overview ¶
Package bundle implements bundle downloading.
Index ¶
- Constants
- type Config
- type Plugin
- func (p *Plugin) Config() *Config
- func (p *Plugin) Reconfigure(ctx context.Context, config interface{})
- func (p *Plugin) Register(name interface{}, listener func(Status))
- func (p *Plugin) RegisterBulkListener(name interface{}, listener func(map[string]*Status))
- func (p *Plugin) Start(ctx context.Context) error
- func (p *Plugin) Stop(ctx context.Context)
- func (p *Plugin) Unregister(name interface{})
- func (p *Plugin) UnregisterBulkListener(name interface{})
- type Source
- type Status
Constants ¶
const Name = "bundle"
Name identifies the plugin on manager.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { download.Config // Deprecated: Use `Bundles` map instead Bundles map[string]*Source Name string `json:"name"` // Deprecated: Use `Bundles` map instead Service string `json:"service"` // Deprecated: Use `Bundles` map instead Prefix *string `json:"prefix"` // Deprecated: Use `Bundles` map instead }
Config represents the configuration of the plugin. The Config can define a single bundle source or a map of `Source` objects defining where/how to download bundles. The older single bundle configuration is deprecated and will be removed in the future in favor of the `Bundles` map.
func ParseBundlesConfig ¶ added in v0.13.0
ParseBundlesConfig validates the config and injects default values for the defined `bundles`. This expects a map of bundle names to resource configurations.
func ParseConfig ¶ added in v0.10.2
ParseConfig validates the config and injects default values. This is for the legacy single bundle configuration. This will add the bundle to the `Bundles` map to provide compatibility with newer clients. Deprecated: Use `ParseBundlesConfig` with `bundles` OPA config option instead
func (*Config) IsMultiBundle ¶ added in v0.13.0
IsMultiBundle returns whether or not the config is the newer multi-bundle style config that uses `bundles` instead of top level bundle information. If/when we drop support for the older style config we can remove this too.
type Plugin ¶
type Plugin struct {
// contains filtered or unexported fields
}
Plugin implements bundle activation.
func (*Plugin) Reconfigure ¶ added in v0.10.2
Reconfigure notifies the plugin that it's configuration has changed. Any bundle configs that have changed or been added/removed will take affect.
func (*Plugin) Register ¶
Register a listener to receive status updates. The name must be comparable. The listener will receive a status update for each bundle configured, they are not going to be aggregated. For all status updates use `RegisterBulkListener`.
func (*Plugin) RegisterBulkListener ¶ added in v0.13.0
RegisterBulkListener registers a listener to receive bulk (aggregated) status updates. The name must be comparable.
func (*Plugin) Start ¶
Start runs the plugin. The plugin will periodically try to download bundles from the configured service. When a new bundle is downloaded, the data and policies are extracted and inserted into storage.
func (*Plugin) Unregister ¶
func (p *Plugin) Unregister(name interface{})
Unregister a listener to stop receiving status updates.
func (*Plugin) UnregisterBulkListener ¶ added in v0.13.0
func (p *Plugin) UnregisterBulkListener(name interface{})
UnregisterBulkListener unregisters a listener to stop receiving aggregated status updates.
type Source ¶ added in v0.13.0
type Source struct { download.Config Service string `json:"service"` Resource string `json:"resource"` }
Source is a configured bundle source to download bundles from
type Status ¶
type Status struct { Name string `json:"name"` ActiveRevision string `json:"active_revision,omitempty"` LastSuccessfulActivation time.Time `json:"last_successful_activation,omitempty"` LastSuccessfulDownload time.Time `json:"last_successful_download,omitempty"` Code string `json:"code,omitempty"` Message string `json:"message,omitempty"` Errors []error `json:"errors,omitempty"` }
Status represents the status of processing a bundle.
func (*Status) SetActivateSuccess ¶ added in v0.10.2
SetActivateSuccess updates the status object to reflect a successful activation.
func (*Status) SetDownloadSuccess ¶ added in v0.10.2
func (s *Status) SetDownloadSuccess()
SetDownloadSuccess updates the status object to reflect a successful download.