mirror of
https://github.com/siderolabs/talos.git
synced 2026-04-11 16:51:24 +02:00
This implements a way to run a debug container with a provided image on the node. The container runs with privileged profile, allowing to issue debugging commands (e.g. using some advanced network tools) to troubleshoot a machine. Signed-off-by: Laura Brehm <laurabrehm@hey.com> Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
40 lines
935 B
Go
40 lines
935 B
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 (
|
|
"regexp"
|
|
"strings"
|
|
|
|
"github.com/siderolabs/talos/internal/integration/base"
|
|
)
|
|
|
|
// DebugSuite verifies debug command.
|
|
type DebugSuite struct {
|
|
base.CLISuite
|
|
}
|
|
|
|
const debugImage = "docker.io/library/alpine:3.23"
|
|
|
|
// SuiteName ...
|
|
func (suite *DebugSuite) SuiteName() string {
|
|
return "cli.DebugSuite"
|
|
}
|
|
|
|
// TestSuccess runs comand with success.
|
|
func (suite *DebugSuite) TestSuccess() {
|
|
suite.RunCLI([]string{"debug", debugImage, "--nodes", suite.RandomDiscoveredNodeInternalIP()},
|
|
base.StdoutShouldMatch(regexp.MustCompile("Linux")),
|
|
base.StderrNotEmpty(),
|
|
base.WithStdin(strings.NewReader("uname\n")),
|
|
)
|
|
}
|
|
|
|
func init() {
|
|
allSuites = append(allSuites, new(DebugSuite))
|
|
}
|