d0d3c068ba
Adds append-only version history on disk (compose/{id}/v{N}/<files>) for
file-based (WorkflowID==0) Compose/Swarm stacks, with rollback to any past
version. Git stacks (versioned by commit) and Kubernetes are untouched.
Backend:
- Stack model: StackFileVersion, PreviousDeploymentInfo, Versions[]; new
StackFileVersionInfo type. APIVersion 2.43.0 -> 2.44.0.
- Versioned multi-file snapshot (entrypoint + AdditionalFiles) into v{N}/;
ProjectPath repointed via GetStackProjectPathByVersion each deploy. Retention
cap (20): Versions[] trimmed in-tx, old dirs deleted only AFTER the tx commits.
- Update handlers: RollbackTo (content read server-side from the target version,
never trusted from the client; validated 1..current & present in Versions).
- Create paths seed v1. stackFile reads ?version= (validated; negative -> 400).
- New GET /stacks/{id}/versions endpoint.
- Migration 2.44.0: move existing file-based stacks' files into v1/ (idempotent,
atomic pre-read of the full file set, skips git/kube/orphans).
Frontend:
- useStackVersions query + stackVersions key; StackEditorTab builds the full
history list; StackVersionSelector shows 'v{N} · date · author'; file/versions
caches invalidated (by prefix) after deploy/rollback.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
51 lines
1.6 KiB
Go
51 lines
1.6 KiB
Go
package stackbuilders
|
|
|
|
import (
|
|
"context"
|
|
|
|
portainer "github.com/portainer/portainer/api"
|
|
"github.com/portainer/portainer/api/dataservices"
|
|
"github.com/portainer/portainer/api/filesystem"
|
|
"github.com/portainer/portainer/api/http/security"
|
|
"github.com/portainer/portainer/api/stacks/deployments"
|
|
)
|
|
|
|
type ComposeStackFileBuilder struct {
|
|
StackBuilder
|
|
SecurityContext *security.RestrictedRequestContext
|
|
}
|
|
|
|
// CreateComposeStackFileBuilder creates a builder for compose stacks deployed from a file (either uploaded or provided as text content).
|
|
func CreateComposeStackFileBuilder(securityContext *security.RestrictedRequestContext,
|
|
dataStore dataservices.DataStore,
|
|
fileService portainer.FileService,
|
|
stackDeployer deployments.StackDeployer) *ComposeStackFileBuilder {
|
|
|
|
return &ComposeStackFileBuilder{
|
|
StackBuilder: CreateStackBuilder(dataStore, fileService, stackDeployer),
|
|
SecurityContext: securityContext,
|
|
}
|
|
}
|
|
|
|
func (b *ComposeStackFileBuilder) prepare(_ context.Context, payload *StackPayload, userID portainer.UserID) error {
|
|
b.stack.Name = payload.Name
|
|
b.stack.Type = portainer.DockerComposeStack
|
|
b.stack.EntryPoint = filesystem.ComposeFileDefaultName
|
|
b.stack.Env = payload.Env
|
|
b.stack.FromAppTemplate = payload.FromAppTemplate
|
|
|
|
if err := b.initCreatedBy(userID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return b.storeStackFileVersioned(payload.StackFileContent)
|
|
}
|
|
|
|
func (b *ComposeStackFileBuilder) deploy(ctx context.Context, endpoint *portainer.Endpoint) error {
|
|
if err := b.initComposeDeployment(b.SecurityContext, endpoint); err != nil {
|
|
return err
|
|
}
|
|
|
|
return b.deploymentConfiger.Deploy(ctx)
|
|
}
|