mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
192 lines
6.1 KiB
Go
192 lines
6.1 KiB
Go
package deploy
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/api/types/volume"
|
|
"github.com/psviderski/uncloud/pkg/api"
|
|
)
|
|
|
|
// Operation represents a single atomic operation in a deployment process.
|
|
// Operations can be composed to form complex deployment strategies.
|
|
type Operation interface {
|
|
// Execute performs the operation using the provided client.
|
|
// TODO: Encapsulate the client in the operation as otherwise it gives an impression that different clients
|
|
// can be provided. But in reality, the operation is tightly coupled with the client that was used to create it.
|
|
Execute(ctx context.Context, cli Client) error
|
|
// Format returns a human-readable representation of the operation.
|
|
// TODO: get rid of the resolver and assign the required names for formatting in the operation itself.
|
|
Format(resolver NameResolver) string
|
|
String() string
|
|
}
|
|
|
|
// NameResolver resolves machine and container IDs to their names.
|
|
type NameResolver interface {
|
|
MachineName(machineID string) string
|
|
ContainerName(containerID string) string
|
|
}
|
|
|
|
// TODO: pass api.ServiceContainer to operations to simplify operation formatting in the plan.
|
|
|
|
// RunContainerOperation creates and starts a new container on a specific machine.
|
|
type RunContainerOperation struct {
|
|
ServiceID string
|
|
Spec api.ServiceSpec
|
|
MachineID string
|
|
}
|
|
|
|
func (o *RunContainerOperation) Execute(ctx context.Context, cli Client) error {
|
|
resp, err := cli.CreateContainer(ctx, o.ServiceID, o.Spec, o.MachineID)
|
|
if err != nil {
|
|
return fmt.Errorf("create container: %w", err)
|
|
}
|
|
if err = cli.StartContainer(ctx, o.ServiceID, resp.ID); err != nil {
|
|
return fmt.Errorf("start container: %w", err)
|
|
}
|
|
|
|
// TODO: wait for the container to become healthy
|
|
|
|
return nil
|
|
}
|
|
|
|
func (o *RunContainerOperation) Format(resolver NameResolver) string {
|
|
machineName := resolver.MachineName(o.MachineID)
|
|
return fmt.Sprintf("%s: Run container [image=%s]", machineName, o.Spec.Container.Image)
|
|
}
|
|
|
|
func (o *RunContainerOperation) String() string {
|
|
return fmt.Sprintf("RunContainerOperation[machine_id=%s service_id=%s image=%s]",
|
|
o.MachineID, o.ServiceID, o.Spec.Container.Image)
|
|
}
|
|
|
|
// StopContainerOperation stops a container on a specific machine.
|
|
type StopContainerOperation struct {
|
|
ServiceID string
|
|
ContainerID string
|
|
MachineID string
|
|
}
|
|
|
|
func (o *StopContainerOperation) Execute(ctx context.Context, cli Client) error {
|
|
if err := cli.StopContainer(ctx, o.ServiceID, o.ContainerID, container.StopOptions{}); err != nil {
|
|
return fmt.Errorf("stop container: %w", err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *StopContainerOperation) Format(resolver NameResolver) string {
|
|
machineName := resolver.MachineName(o.MachineID)
|
|
return fmt.Sprintf("%s: Stop container [id=%s name=%s]", machineName,
|
|
o.ContainerID[:12], resolver.ContainerName(o.ContainerID))
|
|
}
|
|
|
|
func (o *StopContainerOperation) String() string {
|
|
return fmt.Sprintf("StopContainerOperation[machine_id=%s service_id=%s container_id=%s]",
|
|
o.MachineID, o.ServiceID, o.ContainerID)
|
|
}
|
|
|
|
// RemoveContainerOperation stops and removes a container from a specific machine.
|
|
type RemoveContainerOperation struct {
|
|
MachineID string
|
|
Container api.ServiceContainer
|
|
}
|
|
|
|
func (o *RemoveContainerOperation) Execute(ctx context.Context, cli Client) error {
|
|
if err := cli.StopContainer(ctx, o.Container.ServiceID(), o.Container.ID, container.StopOptions{}); err != nil {
|
|
return fmt.Errorf("stop container: %w", err)
|
|
}
|
|
if err := cli.RemoveContainer(ctx, o.Container.ServiceID(), o.Container.ID, container.RemoveOptions{
|
|
// Remove anonymous volumes created by the container.
|
|
RemoveVolumes: true,
|
|
}); err != nil {
|
|
return fmt.Errorf("remove container: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (o *RemoveContainerOperation) Format(resolver NameResolver) string {
|
|
machineName := resolver.MachineName(o.MachineID)
|
|
return fmt.Sprintf("%s: Remove container [id=%s image=%s]",
|
|
machineName, o.Container.ShortID(), o.Container.Config.Image)
|
|
}
|
|
|
|
func (o *RemoveContainerOperation) String() string {
|
|
return fmt.Sprintf("RemoveContainerOperation[machine_id=%s service_id=%s container_id=%s]",
|
|
o.MachineID, o.Container.ServiceID(), o.Container.ID)
|
|
}
|
|
|
|
// CreateVolumeOperation creates a volume on a specific machine.
|
|
type CreateVolumeOperation struct {
|
|
VolumeSpec api.VolumeSpec
|
|
MachineID string
|
|
// MachineName is used for formatting the operation output only.
|
|
MachineName string
|
|
}
|
|
|
|
func (o *CreateVolumeOperation) Execute(ctx context.Context, cli Client) error {
|
|
if o.VolumeSpec.Type != api.VolumeTypeVolume {
|
|
return fmt.Errorf("invalid volume type: '%s', expected '%s'", o.VolumeSpec.Type, api.VolumeTypeVolume)
|
|
}
|
|
|
|
opts := volume.CreateOptions{
|
|
Name: o.VolumeSpec.DockerVolumeName(),
|
|
}
|
|
if o.VolumeSpec.VolumeOptions != nil {
|
|
if o.VolumeSpec.VolumeOptions.Driver != nil {
|
|
opts.Driver = o.VolumeSpec.VolumeOptions.Driver.Name
|
|
opts.DriverOpts = o.VolumeSpec.VolumeOptions.Driver.Options
|
|
}
|
|
opts.Labels = o.VolumeSpec.VolumeOptions.Labels
|
|
}
|
|
|
|
if _, err := cli.CreateVolume(ctx, o.MachineID, opts); err != nil {
|
|
return fmt.Errorf("create volume: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (o *CreateVolumeOperation) Format(_ NameResolver) string {
|
|
return fmt.Sprintf("%s: Create volume [name=%s]", o.MachineName, o.VolumeSpec.DockerVolumeName())
|
|
}
|
|
|
|
func (o *CreateVolumeOperation) String() string {
|
|
return fmt.Sprintf("CreateVolumeOperation[machine_id=%s volume=%s]",
|
|
o.MachineID, o.VolumeSpec.DockerVolumeName())
|
|
}
|
|
|
|
// SequenceOperation is a composite operation that executes a sequence of operations in order.
|
|
type SequenceOperation struct {
|
|
Operations []Operation
|
|
}
|
|
|
|
func (o *SequenceOperation) Execute(ctx context.Context, cli Client) error {
|
|
for _, op := range o.Operations {
|
|
if err := op.Execute(ctx, cli); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (o *SequenceOperation) Format(resolver NameResolver) string {
|
|
ops := make([]string, len(o.Operations))
|
|
for i, op := range o.Operations {
|
|
ops[i] = "- " + op.Format(resolver)
|
|
}
|
|
|
|
return strings.Join(ops, "\n")
|
|
}
|
|
|
|
func (o *SequenceOperation) String() string {
|
|
ops := make([]string, len(o.Operations))
|
|
for i, op := range o.Operations {
|
|
ops[i] = op.String()
|
|
}
|
|
|
|
return fmt.Sprintf("SequenceOperation[%s]", strings.Join(ops, ", "))
|
|
}
|