mirror of
https://github.com/fluxcd/flux2.git
synced 2025-10-28 05:04:48 +08:00
This change adds support for running `suspend/resume` on multiple supported resources at the same time. This improves the user experience by converting ``` flux suspend ks operator && \ flux suspend ks database && \ flux suspend ks app ``` to ``` flux suspend ks operator database app ``` This works for all types of resources (Kustomizations, Sources, etc.) since it has been implemented at the `suspend.go` and `resume.go` level. When the `--wait` flag is passed to the `resume` command, then Flux will wait for all resources in parallel within a goroutine each. Each object is only processed once, even if user provided its name more than once. If suspension or resuming fails for one object, it is still carried out for the remaining objects. As a special case, the old behaviour of `resume` is retained, i.e. when only one object name is provided, `resume` waits for the object to become ready even if the `--wait` flag is not provided. In all other cases the `--wait` flag is always considered. closes #3746 closes #3793 Co-Authored-By: Max Jonas Werner <mail@makk.es> Signed-off-by: Rishikesh Nair <alienware505@gmail.com> Signed-off-by: Max Jonas Werner <mail@makk.es>
99 lines
2.6 KiB
Go
99 lines
2.6 KiB
Go
//go:build e2e
|
|
// +build e2e
|
|
|
|
/*
|
|
Copyright 2021 The Flux authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package main
|
|
|
|
import "testing"
|
|
|
|
func TestKustomizationFromGit(t *testing.T) {
|
|
namespace := allocateNamespace("tkfg")
|
|
del, err := execSetupTestNamespace(namespace)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Cleanup(del)
|
|
|
|
tmpl := map[string]string{"ns": namespace}
|
|
|
|
cases := []struct {
|
|
args string
|
|
goldenFile string
|
|
tmpl map[string]string
|
|
}{
|
|
{
|
|
"create source git tkfg --url=https://github.com/stefanprodan/podinfo --branch=main --tag=6.3.5",
|
|
"testdata/kustomization/create_source_git.golden",
|
|
nil,
|
|
},
|
|
{
|
|
"create kustomization tkfg --source=tkfg --path=./deploy/overlays/dev --prune=true --interval=5m --health-check=Deployment/frontend.dev --health-check=Deployment/backend.dev --health-check-timeout=3m",
|
|
"testdata/kustomization/create_kustomization_from_git.golden",
|
|
nil,
|
|
},
|
|
{
|
|
"get kustomization tkfg",
|
|
"testdata/kustomization/get_kustomization_from_git.golden",
|
|
nil,
|
|
},
|
|
{
|
|
"reconcile kustomization tkfg --with-source",
|
|
"testdata/kustomization/reconcile_kustomization_from_git.golden",
|
|
tmpl,
|
|
},
|
|
{
|
|
"suspend kustomization tkfg",
|
|
"testdata/kustomization/suspend_kustomization_from_git.golden",
|
|
tmpl,
|
|
},
|
|
{
|
|
"suspend kustomization tkfg foo tkfg bar",
|
|
"testdata/kustomization/suspend_kustomization_from_git_multiple_args.golden",
|
|
tmpl,
|
|
},
|
|
{
|
|
"resume kustomization tkfg foo --wait",
|
|
"testdata/kustomization/resume_kustomization_from_git_multiple_args_wait.golden",
|
|
tmpl,
|
|
},
|
|
{
|
|
"resume kustomization tkfg",
|
|
"testdata/kustomization/resume_kustomization_from_git.golden",
|
|
tmpl,
|
|
},
|
|
{
|
|
"resume kustomization tkfg tkfg",
|
|
"testdata/kustomization/resume_kustomization_from_git_multiple_args.golden",
|
|
tmpl,
|
|
},
|
|
{
|
|
"delete kustomization tkfg --silent",
|
|
"testdata/kustomization/delete_kustomization_from_git.golden",
|
|
tmpl,
|
|
},
|
|
}
|
|
|
|
for _, tc := range cases {
|
|
cmd := cmdTestCase{
|
|
args: tc.args + " -n=" + namespace,
|
|
assert: assertGoldenTemplateFile(tc.goldenFile, tc.tmpl),
|
|
}
|
|
cmd.runTestCmd(t)
|
|
}
|
|
}
|