talos/internal/integration/cli/apply-config.go
Andrey Smirnov 7bae5b40b4
feat: implement link configuration
New multi-doc way to apply static configuration to network links.

Fixes #10957

Also implements related changes:

* new-style auto-DHCP mode - run DHCP as long as there is no new-style
  config document
* refactoring of controllers/tests which were touched in this PR
* implemented embedded config structs handling in docgen -> Markdown and
  docgen -> JSON schema

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
2025-09-25 18:28:06 +04:00

89 lines
2.6 KiB
Go

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
//go:build integration_cli
package cli
import (
_ "embed"
"os"
"path/filepath"
"regexp"
"time"
"github.com/siderolabs/go-retry/retry"
"github.com/siderolabs/talos/internal/integration/base"
)
// ApplyConfigSuite verifies dmesg command.
type ApplyConfigSuite struct {
base.CLISuite
}
// SuiteName ...
func (suite *ApplyConfigSuite) SuiteName() string {
return "cli.ApplyConfigSuite"
}
//go:embed testdata/patches/dummy-ap.yaml
var dummyAPPatch []byte
//go:embed testdata/patches/delete-dummy-ap.yaml
var deleteDummyAPPatch []byte
// TestApplyWithPatch verifies that .
func (suite *ApplyConfigSuite) TestApplyWithPatch() {
if suite.Cluster == nil {
suite.T().Skip("skipping if cluster is not qemu/docker")
}
tmpDir := suite.T().TempDir()
node := suite.RandomDiscoveredNodeInternalIP()
data, _ := suite.RunCLI([]string{"get", "--nodes", node, "mc", "v1alpha1", "-o", "jsonpath={.spec}"})
configPath := filepath.Join(tmpDir, "config.yaml")
suite.Require().NoError(os.WriteFile(configPath, []byte(data), 0o777))
patchPath := filepath.Join(tmpDir, "patch.yaml")
suite.Require().NoError(os.WriteFile(patchPath, dummyAPPatch, 0o777))
suite.RunCLI([]string{"apply-config", "--nodes", node, "--config-patch", "@" + patchPath, "-f", configPath},
base.StdoutEmpty(),
base.StderrNotEmpty(),
base.StderrShouldMatch(regexp.MustCompile("Applied configuration without a reboot")),
)
// sleep a bit to let the config propagate
time.Sleep(1 * time.Second)
suite.RunCLI([]string{"get", "--nodes", node, "links"},
base.StdoutShouldMatch(regexp.MustCompile("dummy-ap-patch")),
)
// now delete the dummy-ap-patch
data, _ = suite.RunCLI([]string{"get", "--nodes", node, "mc", "v1alpha1", "-o", "jsonpath={.spec}"})
suite.Require().NoError(os.WriteFile(configPath, []byte(data), 0o777))
suite.Require().NoError(os.WriteFile(patchPath, deleteDummyAPPatch, 0o777))
suite.RunCLI([]string{"apply-config", "--nodes", node, "--config-patch", "@" + patchPath, "-f", configPath},
base.StdoutEmpty(),
base.StderrNotEmpty(),
base.StderrShouldMatch(regexp.MustCompile("Applied configuration without a reboot")),
)
suite.RunCLI([]string{"get", "--nodes", node, "links"},
base.StdoutShouldNotMatch(regexp.MustCompile("dummy-ap-patch")),
base.WithRetry(retry.Constant(15*time.Second, retry.WithUnits(time.Second))),
)
}
func init() {
allSuites = append(allSuites, new(ApplyConfigSuite))
}