Documentation ¶
Index ¶
- Variables
- func CalculateCPUPercent(newSample, oldSample, newTotal, oldTotal uint64, cores int) float64
- func NewPlugin(logger hclog.Logger) drivers.DriverPlugin
- type CHContainer
- type CHMount
- type Config
- type Driver
- func (d *Driver) Capabilities() (*drivers.Capabilities, error)
- func (d *Driver) ConfigSchema() (*hclspec.Spec, error)
- func (d *Driver) DestroyTask(taskID string, force bool) error
- func (d *Driver) ExecTask(taskID string, cmd []string, timeout time.Duration) (*drivers.ExecTaskResult, error)
- func (d *Driver) ExecTaskStreaming(ctx context.Context, taskID string, opts *drivers.ExecOptions) (*drivers.ExitResult, error)
- func (d *Driver) Fingerprint(ctx context.Context) (<-chan *drivers.Fingerprint, error)
- func (d *Driver) InspectTask(taskID string) (*drivers.TaskStatus, error)
- func (d *Driver) PluginInfo() (*base.PluginInfoResponse, error)
- func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error
- func (d *Driver) SetConfig(cfg *base.Config) error
- func (d *Driver) SignalTask(taskID string, signal string) error
- func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drivers.DriverNetwork, error)
- func (d *Driver) StopTask(taskID string, timeout time.Duration, signal string) error
- func (d *Driver) TaskConfigSchema() (*hclspec.Spec, error)
- func (d *Driver) TaskEvents(ctx context.Context) (<-chan *drivers.TaskEvent, error)
- func (d *Driver) TaskStats(ctx context.Context, taskID string, interval time.Duration) (<-chan *drivers.TaskResourceUsage, error)
- func (d *Driver) WaitTask(ctx context.Context, taskID string) (<-chan *drivers.ExitResult, error)
- type RegistryAuth
- type TaskConfig
- type TaskState
Constants ¶
This section is empty.
Variables ¶
var ( DockerMeasuredCPUStats = []string{"Throttled Periods", "Throttled Time", "Percent"} // cgroup-v2 only exposes a subset of memory stats DockerCgroupV1MeasuredMemStats = []string{"RSS", "Cache", "Swap", "Usage", "Max Usage"} )
Functions ¶
func CalculateCPUPercent ¶ added in v0.0.5
func NewPlugin ¶
func NewPlugin(logger hclog.Logger) drivers.DriverPlugin
NewPlugin returns a new example driver plugin
Types ¶
type CHContainer ¶ added in v0.0.4
type CHContainer struct { CreateBody container.ContainerCreateCreatedBody Mounts []CHMount }
type Driver ¶ added in v0.0.35
type Driver struct {
// contains filtered or unexported fields
}
Driver is an example driver plugin. When provisioned in a job,
func (*Driver) Capabilities ¶ added in v0.0.35
func (d *Driver) Capabilities() (*drivers.Capabilities, error)
Capabilities returns the features supported by the driver.
func (*Driver) ConfigSchema ¶ added in v0.0.35
ConfigSchema returns the plugin configuration schema.
func (*Driver) DestroyTask ¶ added in v0.0.35
DestroyTask cleans up and removes a task that has terminated.
func (*Driver) ExecTask ¶ added in v0.0.35
func (d *Driver) ExecTask(taskID string, cmd []string, timeout time.Duration) (*drivers.ExecTaskResult, error)
ExecTask returns the result of executing the given command inside a task. This is an optional capability.
func (*Driver) ExecTaskStreaming ¶ added in v0.0.35
func (d *Driver) ExecTaskStreaming(ctx context.Context, taskID string, opts *drivers.ExecOptions) (*drivers.ExitResult, error)
func (*Driver) Fingerprint ¶ added in v0.0.35
Fingerprint returns a channel that will be used to send health information and other driver specific node attributes.
func (*Driver) InspectTask ¶ added in v0.0.35
func (d *Driver) InspectTask(taskID string) (*drivers.TaskStatus, error)
InspectTask returns detailed status information for the referenced taskID.
func (*Driver) PluginInfo ¶ added in v0.0.35
func (d *Driver) PluginInfo() (*base.PluginInfoResponse, error)
PluginInfo returns information describing the plugin.
func (*Driver) RecoverTask ¶ added in v0.0.35
func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error
RecoverTask recreates the in-memory state of a task from a TaskHandle.
func (*Driver) SetConfig ¶ added in v0.0.35
SetConfig is called by the client to pass the configuration for the plugin.
func (*Driver) SignalTask ¶ added in v0.0.35
SignalTask forwards a signal to a task. This is an optional capability.
func (*Driver) StartTask ¶ added in v0.0.35
func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drivers.DriverNetwork, error)
StartTask returns a task handle and a driver network if necessary.
func (*Driver) StopTask ¶ added in v0.0.35
StopTask stops a running task with the given signal and within the timeout window.
func (*Driver) TaskConfigSchema ¶ added in v0.0.35
TaskConfigSchema returns the HCL schema for the configuration of a task.
func (*Driver) TaskEvents ¶ added in v0.0.35
TaskEvents returns a channel that the plugin can use to emit task related events.
type RegistryAuth ¶
RegistryAuth info to pull image from registry.
type TaskConfig ¶
type TaskConfig struct { Image string `codec:"image"` Command string `codec:"command"` Auth RegistryAuth `codec:"auth"` Ports []string `codec:"ports"` }
TaskConfig contains configuration information for a task that runs with this plugin
type TaskState ¶
type TaskState struct { ReattachConfig *structs.ReattachConfig TaskConfig *drivers.TaskConfig StartedAt time.Time // TODO: add any extra important values that must be persisted in order // to restore a task. // // The plugin keeps track of its running tasks in a in-memory data // structure. If the plugin crashes, this data will be lost, so Nomad // will respawn a new instance of the plugin and try to restore its // in-memory representation of the running tasks using the RecoverTask() // method below. Pid int ContainerID string CHContainer CHContainer // contains filtered or unexported fields }
TaskState is the runtime state which is encoded in the handle returned to Nomad client. This information is needed to rebuild the task state and handler during recovery.