Documentation ¶
Overview ¶
Package containerd extracts container inventory from containerd API.
Index ¶
- Constants
- type Config
- type CtrdClient
- type Extractor
- func (e Extractor) Config() Config
- func (e *Extractor) Extract(ctx context.Context, input *standalone.ScanInput) ([]*extractor.Inventory, error)
- func (e Extractor) Name() string
- func (e Extractor) ToCPEs(i *extractor.Inventory) ([]string, error)
- func (e Extractor) ToPURL(i *extractor.Inventory) (*purl.PackageURL, error)
- func (e Extractor) Version() int
- type Metadata
Constants ¶
const (
// Name is the unique name of this extractor.
Name = "containers/containerd-runtime"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { // ContainerdSocketAddr is the local path to the containerd socket. // Used further to crete a client for containerd API. ContainerdSocketAddr string }
Config is the configuration for the Extractor.
func DefaultConfig ¶
func DefaultConfig() Config
DefaultConfig returns the default configuration for the containerd extractor.
type CtrdClient ¶
type CtrdClient interface { LoadContainer(ctx context.Context, id string) (containerd.Container, error) NamespaceService() namespaces.Store TaskService() tasks.TasksClient Close() error }
CtrdClient is an interface that provides an abstraction on top of the containerd client. Needed for testing purposes.
type Extractor ¶
type Extractor struct {
// contains filtered or unexported fields
}
Extractor implements the containerd runtime extractor.
func New ¶
New creates a new containerd client and returns a containerd container inventory extractor.
func NewWithClient ¶
func NewWithClient(cli CtrdClient, socketAddr string) *Extractor
NewWithClient creates a new extractor with the provided containerd client. Needed for testing purposes.
func (*Extractor) Extract ¶
func (e *Extractor) Extract(ctx context.Context, input *standalone.ScanInput) ([]*extractor.Inventory, error)
Extractor extracts containers from the containerd API.
func (Extractor) ToCPEs ¶
ToCPEs is not applicable as this extractor does not infer CPEs from the Inventory.
Directories ¶
Path | Synopsis |
---|---|
Package fakeclient contains a fake implementation of the containerd client for testing purposes.
|
Package fakeclient contains a fake implementation of the containerd client for testing purposes. |