mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
214 lines
6.9 KiB
Go
214 lines
6.9 KiB
Go
package caddy
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"maps"
|
|
"os"
|
|
"slices"
|
|
"strings"
|
|
|
|
"github.com/docker/cli/cli/streams"
|
|
"github.com/docker/compose/v2/pkg/progress"
|
|
"github.com/psviderski/uncloud/internal/cli"
|
|
"github.com/psviderski/uncloud/internal/machine/api/pb"
|
|
"github.com/psviderski/uncloud/pkg/api"
|
|
"github.com/psviderski/uncloud/pkg/client"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type deployOptions struct {
|
|
caddyfile string
|
|
image string
|
|
machines []string
|
|
context string
|
|
}
|
|
|
|
func NewDeployCommand() *cobra.Command {
|
|
opts := deployOptions{}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "deploy",
|
|
Short: "Deploy or upgrade Caddy reverse proxy across all machines in the cluster.",
|
|
Long: "Deploy or upgrade Caddy reverse proxy across all machines in the cluster.\n" +
|
|
"A rolling update is performed when updating existing containers to minimise disruption.",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
uncli := cmd.Context().Value("cli").(*cli.CLI)
|
|
return runDeploy(cmd.Context(), uncli, opts)
|
|
},
|
|
}
|
|
|
|
cmd.Flags().StringVar(&opts.caddyfile, "caddyfile", "",
|
|
"Path to a custom global Caddy config (Caddyfile) that will be prepended to the auto-generated Caddy config.")
|
|
cmd.Flags().StringVar(&opts.image, "image", "",
|
|
"Caddy Docker image to deploy. (default caddy:LATEST_VERSION)")
|
|
cmd.Flags().StringSliceVarP(&opts.machines, "machine", "m", nil,
|
|
"Machine names to deploy to. Can be specified multiple times or as a comma-separated "+
|
|
"list of machine names. (default is all machines)")
|
|
cmd.Flags().StringVarP(
|
|
&opts.context, "context", "c", "",
|
|
"Name of the cluster context to deploy to. (default is the current context)",
|
|
)
|
|
|
|
return cmd
|
|
}
|
|
|
|
func runDeploy(ctx context.Context, uncli *cli.CLI, opts deployOptions) error {
|
|
caddyfile := ""
|
|
if opts.caddyfile != "" {
|
|
data, err := os.ReadFile(opts.caddyfile)
|
|
if err != nil {
|
|
return fmt.Errorf("read Caddyfile: %w", err)
|
|
}
|
|
caddyfile = strings.TrimSpace(string(data))
|
|
}
|
|
|
|
clusterClient, err := uncli.ConnectCluster(ctx, opts.context)
|
|
if err != nil {
|
|
return fmt.Errorf("connect to cluster: %w", err)
|
|
}
|
|
defer clusterClient.Close()
|
|
|
|
svc, err := clusterClient.InspectService(ctx, client.CaddyServiceName)
|
|
if err != nil {
|
|
if !errors.Is(err, api.ErrNotFound) {
|
|
return fmt.Errorf("inspect caddy service: %w", err)
|
|
}
|
|
fmt.Printf("Service: %s (not running)\n", client.CaddyServiceName)
|
|
} else {
|
|
fmt.Printf("Service: %s (%s mode)\n", svc.Name, svc.Mode)
|
|
|
|
// Collect unique images of all containers in the running caddy service.
|
|
images := make(map[string]struct{}, len(svc.Containers))
|
|
for _, c := range svc.Containers {
|
|
images[c.Container.Config.Image] = struct{}{}
|
|
}
|
|
currentImages := slices.Collect(maps.Keys(images))
|
|
|
|
if len(currentImages) > 1 {
|
|
commaSeparatedImages := strings.Join(currentImages, ", ")
|
|
fmt.Printf("Current images (multiple versions detected): %s\n", commaSeparatedImages)
|
|
} else {
|
|
fmt.Printf("Current image: %s\n", currentImages[0])
|
|
}
|
|
}
|
|
|
|
if opts.image != "" {
|
|
fmt.Printf("Target image: %s\n", opts.image)
|
|
}
|
|
|
|
fmt.Println()
|
|
fmt.Println("Preparing a deployment plan...")
|
|
|
|
placement := api.Placement{
|
|
Machines: cli.ExpandCommaSeparatedValues(opts.machines),
|
|
}
|
|
d, err := clusterClient.NewCaddyDeployment(opts.image, caddyfile, placement)
|
|
if err != nil {
|
|
return fmt.Errorf("create caddy deployment: %w", err)
|
|
}
|
|
|
|
if opts.image == "" {
|
|
fmt.Printf("Target image: %s (latest stable)\n", d.Spec.Container.Image)
|
|
}
|
|
|
|
plan, err := d.Plan(ctx)
|
|
if err != nil {
|
|
return fmt.Errorf("plan caddy deployment: %w", err)
|
|
}
|
|
|
|
if len(plan.Operations) == 0 {
|
|
fmt.Printf("%s service is up to date.\n", client.CaddyServiceName)
|
|
} else {
|
|
if svc.ID == "" {
|
|
if len(opts.machines) > 0 {
|
|
fmt.Println("This will run a Caddy container on each selected machine.")
|
|
} else {
|
|
fmt.Println("This will run a Caddy container on each machine.")
|
|
}
|
|
}
|
|
|
|
// Initialise a machine and container name resolver to properly format the plan output.
|
|
resolver, err := clusterClient.ServiceOperationNameResolver(ctx, svc)
|
|
if err != nil {
|
|
return fmt.Errorf("create machine and container name resolver for service operations: %w", err)
|
|
}
|
|
|
|
fmt.Println()
|
|
fmt.Println("Deployment plan:")
|
|
fmt.Println(plan.Format(resolver))
|
|
fmt.Println()
|
|
|
|
confirmed, err := cli.Confirm()
|
|
if err != nil {
|
|
return fmt.Errorf("confirm deployment: %w", err)
|
|
}
|
|
if !confirmed {
|
|
fmt.Println("Cancelled. No changes were made.")
|
|
return nil
|
|
}
|
|
|
|
err = progress.RunWithTitle(ctx, func(ctx context.Context) error {
|
|
if _, err = d.Run(ctx); err != nil {
|
|
return fmt.Errorf("deploy caddy: %w", err)
|
|
}
|
|
return nil
|
|
}, uncli.ProgressOut(), fmt.Sprintf("Deploying service %s (%s mode)", d.Spec.Name, d.Spec.Mode))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
fmt.Println()
|
|
return UpdateDomainRecords(ctx, clusterClient, uncli.ProgressOut())
|
|
}
|
|
|
|
func UpdateDomainRecords(ctx context.Context, clusterClient *client.Client, progressOut *streams.Out) error {
|
|
domain, err := clusterClient.GetDomain(ctx)
|
|
if err != nil {
|
|
if errors.Is(err, api.ErrNotFound) {
|
|
fmt.Println("Skipping DNS records update as no cluster domain is reserved (see 'uc dns').")
|
|
return nil
|
|
}
|
|
return fmt.Errorf("get cluster domain: %w", err)
|
|
}
|
|
|
|
fmt.Println("Updating cluster domain records in Uncloud DNS to point to machines running caddy service...")
|
|
// TODO: split the method into two: one to get the records and one to update them to ask for update confirmation.
|
|
|
|
var records []*pb.DNSRecord
|
|
err = progress.RunWithTitle(ctx, func(ctx context.Context) error {
|
|
var err error
|
|
records, err = clusterClient.CreateIngressRecords(ctx, client.CaddyServiceName)
|
|
return err
|
|
}, progressOut, "Verifying internet access to caddy service")
|
|
if err != nil {
|
|
if errors.Is(err, client.ErrNoReachableMachines) {
|
|
fmt.Println()
|
|
fmt.Printf("DNS records for domain '%s' could not be updated as there are no internet-reachable "+
|
|
"machines running caddy containers.\n", domain)
|
|
fmt.Println()
|
|
fmt.Println("Possible solutions:")
|
|
fmt.Println("- Ensure your machines have public IP addresses")
|
|
fmt.Println("- Use --public-ip flag when adding machines to override the automatically detected IPs")
|
|
fmt.Println("- Check firewall settings on your machines")
|
|
fmt.Println("- Configure port forwarding if behind NAT")
|
|
fmt.Println("- Retry Caddy deployment with 'uc caddy deploy' after resolving connectivity issues")
|
|
fmt.Println()
|
|
fmt.Println("Your services won't be accessible from the internet until at least one machine " +
|
|
"becomes reachable. If you aren't planning to expose any services publicly, you can release " +
|
|
"the domain by running 'uc dns release'.")
|
|
}
|
|
return fmt.Errorf("failed to update DNS records pointing to caddy service: %w", err)
|
|
}
|
|
|
|
fmt.Println()
|
|
fmt.Println("DNS records updated to use only the internet-reachable machines running caddy service:")
|
|
for _, r := range records {
|
|
fmt.Printf(" %s %s → %s\n", r.Name, r.Type, strings.Join(r.Values, ", "))
|
|
}
|
|
|
|
return nil
|
|
}
|