mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
cli: fix apply flag issues (#2526)
* Fix flag order * Fix missing phases in flag parsing --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
parent
e4d8bda792
commit
a0863bafe7
@ -16,6 +16,7 @@ import (
|
|||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"slices"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -41,7 +42,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// phases that can be skipped during apply.
|
// phases that can be skipped during apply.
|
||||||
// New phases should also be added to [formatSkipPhases].
|
// New phases should also be added to [allPhases].
|
||||||
const (
|
const (
|
||||||
// skipInfrastructurePhase skips the Terraform apply of the apply process.
|
// skipInfrastructurePhase skips the Terraform apply of the apply process.
|
||||||
skipInfrastructurePhase skipPhase = "infrastructure"
|
skipInfrastructurePhase skipPhase = "infrastructure"
|
||||||
@ -59,9 +60,9 @@ const (
|
|||||||
skipK8sPhase skipPhase = "k8s"
|
skipK8sPhase skipPhase = "k8s"
|
||||||
)
|
)
|
||||||
|
|
||||||
// formatSkipPhases returns a formatted string of all phases that can be skipped.
|
// allPhases returns a list of all phases that can be skipped as strings.
|
||||||
func formatSkipPhases() string {
|
func allPhases() []string {
|
||||||
return fmt.Sprintf("{ %s }", strings.Join([]string{
|
return []string{
|
||||||
string(skipInfrastructurePhase),
|
string(skipInfrastructurePhase),
|
||||||
string(skipInitPhase),
|
string(skipInitPhase),
|
||||||
string(skipAttestationConfigPhase),
|
string(skipAttestationConfigPhase),
|
||||||
@ -69,7 +70,12 @@ func formatSkipPhases() string {
|
|||||||
string(skipHelmPhase),
|
string(skipHelmPhase),
|
||||||
string(skipImagePhase),
|
string(skipImagePhase),
|
||||||
string(skipK8sPhase),
|
string(skipK8sPhase),
|
||||||
}, " | "))
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// formatSkipPhases returns a formatted string of all phases that can be skipped.
|
||||||
|
func formatSkipPhases() string {
|
||||||
|
return fmt.Sprintf("{ %s }", strings.Join(allPhases(), " | "))
|
||||||
}
|
}
|
||||||
|
|
||||||
// skipPhase is a phase of the upgrade process that can be skipped.
|
// skipPhase is a phase of the upgrade process that can be skipped.
|
||||||
@ -142,10 +148,10 @@ func (f *applyFlags) parse(flags *pflag.FlagSet) error {
|
|||||||
}
|
}
|
||||||
var skipPhases skipPhases
|
var skipPhases skipPhases
|
||||||
for _, phase := range rawSkipPhases {
|
for _, phase := range rawSkipPhases {
|
||||||
switch skipPhase(strings.ToLower(phase)) {
|
phase = strings.ToLower(phase)
|
||||||
case skipInfrastructurePhase, skipHelmPhase, skipImagePhase, skipK8sPhase:
|
if slices.Contains(allPhases(), phase) {
|
||||||
skipPhases.add(skipPhase(phase))
|
skipPhases.add(skipPhase(phase))
|
||||||
default:
|
} else {
|
||||||
return fmt.Errorf("invalid phase %s", phase)
|
return fmt.Errorf("invalid phase %s", phase)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -568,8 +574,8 @@ func (a *applyCmd) runK8sUpgrade(cmd *cobra.Command, conf *config.Config, kubeUp
|
|||||||
) error {
|
) error {
|
||||||
err := kubeUpgrader.UpgradeNodeVersion(
|
err := kubeUpgrader.UpgradeNodeVersion(
|
||||||
cmd.Context(), conf, a.flags.force,
|
cmd.Context(), conf, a.flags.force,
|
||||||
a.flags.skipPhases.contains(skipK8sPhase),
|
|
||||||
a.flags.skipPhases.contains(skipImagePhase),
|
a.flags.skipPhases.contains(skipImagePhase),
|
||||||
|
a.flags.skipPhases.contains(skipK8sPhase),
|
||||||
)
|
)
|
||||||
|
|
||||||
var upgradeErr *compatibility.InvalidUpgradeError
|
var upgradeErr *compatibility.InvalidUpgradeError
|
||||||
|
@ -9,6 +9,7 @@ package cmd
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -149,3 +150,22 @@ func TestBackupHelmCharts(t *testing.T) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestSkipPhases(t *testing.T) {
|
||||||
|
require := require.New(t)
|
||||||
|
cmd := NewApplyCmd()
|
||||||
|
// register persistent flags manually
|
||||||
|
cmd.Flags().String("workspace", "", "")
|
||||||
|
cmd.Flags().Bool("force", true, "")
|
||||||
|
cmd.Flags().String("tf-log", "NONE", "")
|
||||||
|
cmd.Flags().Bool("debug", false, "")
|
||||||
|
|
||||||
|
require.NoError(cmd.Flags().Set("skip-phases", strings.Join(allPhases(), ",")))
|
||||||
|
wantPhases := skipPhases{}
|
||||||
|
wantPhases.add(skipInfrastructurePhase, skipInitPhase, skipAttestationConfigPhase, skipCertSANsPhase, skipHelmPhase, skipK8sPhase, skipImagePhase)
|
||||||
|
|
||||||
|
var flags applyFlags
|
||||||
|
err := flags.parse(cmd.Flags())
|
||||||
|
require.NoError(err)
|
||||||
|
assert.Equal(t, wantPhases, flags.skipPhases)
|
||||||
|
}
|
||||||
|
@ -283,26 +283,6 @@ func TestUpgradeApply(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestUpgradeApplyFlagsForSkipPhases(t *testing.T) {
|
|
||||||
require := require.New(t)
|
|
||||||
cmd := newUpgradeApplyCmd()
|
|
||||||
// register persistent flags manually
|
|
||||||
cmd.Flags().String("workspace", "", "")
|
|
||||||
cmd.Flags().Bool("force", true, "")
|
|
||||||
cmd.Flags().String("tf-log", "NONE", "")
|
|
||||||
cmd.Flags().Bool("debug", false, "")
|
|
||||||
cmd.Flags().Bool("merge-kubeconfig", false, "")
|
|
||||||
|
|
||||||
require.NoError(cmd.Flags().Set("skip-phases", "infrastructure,helm,k8s,image"))
|
|
||||||
wantPhases := skipPhases{}
|
|
||||||
wantPhases.add(skipInfrastructurePhase, skipHelmPhase, skipK8sPhase, skipImagePhase)
|
|
||||||
|
|
||||||
var flags applyFlags
|
|
||||||
err := flags.parse(cmd.Flags())
|
|
||||||
require.NoError(err)
|
|
||||||
assert.Equal(t, wantPhases, flags.skipPhases)
|
|
||||||
}
|
|
||||||
|
|
||||||
type stubKubernetesUpgrader struct {
|
type stubKubernetesUpgrader struct {
|
||||||
nodeVersionErr error
|
nodeVersionErr error
|
||||||
currentConfig config.AttestationCfg
|
currentConfig config.AttestationCfg
|
||||||
|
Loading…
Reference in New Issue
Block a user