mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
c69e6777bd
* add terraform planning * overwrite terraform files in upgrade workspace * Revert "overwrite terraform files in upgrade workspace" This reverts commit 8bdacfb8bef23ef2cdbdb06bad0855b3bbc42df0. * prepare terraform workspace * test upgrade integration * print upgrade abort * rename plan file * write output to file * add show plan test * add upgrade tf workdir * fix workspace preparing * squash to 1 command * test * bazel build * plan test * register flag manually * bazel tidy * fix linter * remove MAA variable * fix workdir * accept tf variables * variable fetching * fix resource indices * accept Terraform targets * refactor upgrade command * Terraform migration apply unit test * pass down image fetcher to test * use new flags in e2e test * move file name to constant * update buildfiles * fix version constant * conditionally create MAA * move interface down * upgrade dir * update buildfiles * fix interface * fix createMAA check * fix imports * update buildfiles * wip: workspace backup * copy utils * backup upgrade workspace * remove debug print * replace old state after upgrade * check if flag exists * prepare test workspace * remove prefix Co-authored-by: Otto Bittner <cobittner@posteo.net> * respect file permissions * refactor tf upgrader * check workspace before upgrades * remove temp upgrade dir after completion * clean up workspace after abortion * fix upgrade apply test * fix linter --------- Co-authored-by: Otto Bittner <cobittner@posteo.net>
106 lines
3.2 KiB
Go
106 lines
3.2 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package terraform
|
|
|
|
import (
|
|
"bytes"
|
|
"embed"
|
|
"errors"
|
|
"fmt"
|
|
"io/fs"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
|
"github.com/edgelesssys/constellation/v2/internal/file"
|
|
"github.com/spf13/afero"
|
|
)
|
|
|
|
// ErrTerraformWorkspaceDifferentFiles is returned when a re-used existing Terraform workspace has different files than the ones to be extracted (e.g. due to a version mix-up or incomplete writes).
|
|
var ErrTerraformWorkspaceDifferentFiles = errors.New("creating cluster: trying to overwrite an existing Terraform file with a different version")
|
|
|
|
//go:embed terraform/*
|
|
//go:embed terraform/*/.terraform.lock.hcl
|
|
var terraformFS embed.FS
|
|
|
|
// prepareWorkspace loads the embedded Terraform files,
|
|
// and writes them into the workspace.
|
|
func prepareWorkspace(rootDir string, fileHandler file.Handler, workingDir string) error {
|
|
return terraformCopier(fileHandler, rootDir, workingDir)
|
|
}
|
|
|
|
// prepareUpgradeWorkspace takes the Terraform state file from the old workspace and the
|
|
// embedded Terraform files and writes them into the new workspace.
|
|
func prepareUpgradeWorkspace(rootDir string, fileHandler file.Handler, oldWorkingDir, newWorkingDir string) error {
|
|
// backup old workspace
|
|
if err := fileHandler.CopyDir(
|
|
oldWorkingDir,
|
|
filepath.Join(constants.UpgradeDir, constants.TerraformUpgradeBackupDir),
|
|
); err != nil {
|
|
return fmt.Errorf("backing up old workspace: %w", err)
|
|
}
|
|
|
|
// copy state file
|
|
if err := fileHandler.CopyFile(
|
|
filepath.Join(oldWorkingDir, "terraform.tfstate"),
|
|
filepath.Join(newWorkingDir, "terraform.tfstate"),
|
|
file.OptMkdirAll,
|
|
); err != nil {
|
|
return fmt.Errorf("copying state file: %w", err)
|
|
}
|
|
|
|
return terraformCopier(fileHandler, rootDir, newWorkingDir)
|
|
}
|
|
|
|
// terraformCopier copies the embedded Terraform files into the workspace.
|
|
func terraformCopier(fileHandler file.Handler, rootDir, workingDir string) error {
|
|
return fs.WalkDir(terraformFS, rootDir, func(path string, d fs.DirEntry, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if d.IsDir() {
|
|
return nil
|
|
}
|
|
|
|
content, err := terraformFS.ReadFile(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
fileName := strings.Replace(filepath.Join(workingDir, path), rootDir+"/", "", 1)
|
|
if err := fileHandler.Write(fileName, content, file.OptMkdirAll); errors.Is(err, afero.ErrFileExists) {
|
|
// If a file already exists, check if it is identical. If yes, continue and don't write anything to disk.
|
|
// If no, don't overwrite it and instead throw an error. The affected file could be from a different version,
|
|
// provider, corrupted or manually modified in general.
|
|
existingFileContent, err := fileHandler.Read(fileName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !bytes.Equal(content, existingFileContent) {
|
|
return ErrTerraformWorkspaceDifferentFiles
|
|
}
|
|
return nil
|
|
} else if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
})
|
|
}
|
|
|
|
func cleanUpWorkspace(fileHandler file.Handler, workingDir string) error {
|
|
return ignoreFileNotFoundErr(fileHandler.RemoveAll(workingDir))
|
|
}
|
|
|
|
// ignoreFileNotFoundErr ignores the error if it is a file not found error.
|
|
func ignoreFileNotFoundErr(err error) error {
|
|
if errors.Is(err, afero.ErrFileNotFound) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|