Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,10 @@ updates:
open-pull-requests-limit: 10
cooldown:
default-days: 7
groups:
codeql-actions:
patterns:
- "github/codeql-action/*"
docker-actions:
patterns:
- "docker/*"
11 changes: 10 additions & 1 deletion cmd/ctr/commands/run/run_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ var platformRunFlags = []cli.Flag{
Name: "isolated",
Usage: "Run the container with vm isolation",
},
&cli.BoolFlag{
Name: "scrub-logs",
Usage: "Scrub sensitive information from the shim logs (Windows only)",
},
}

// NewContainer creates a new container
Expand Down Expand Up @@ -176,9 +180,14 @@ func NewContainer(ctx context.Context, client *containerd.Client, cliContext *cl
runtime := cliContext.String("runtime")
var runtimeOpts any
if runtime == "io.containerd.runhcs.v1" {
runtimeOpts = &options.Options{
opts := &options.Options{
Debug: cliContext.Bool("debug"),
}
if cliContext.IsSet("scrub-logs") {
scrubLogs := cliContext.Bool("scrub-logs")
opts.ScrubLogs = &scrubLogs
}
runtimeOpts = opts
}
cOpts = append(cOpts, containerd.WithRuntime(runtime, runtimeOpts))

Expand Down
10 changes: 10 additions & 0 deletions internal/cri/config/config_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,13 @@ func DefaultRuntimeConfig() RuntimeConfig {
"runhcs-wcow-process": {
Type: "io.containerd.runhcs.v1",
ContainerAnnotations: []string{"io.microsoft.container.*"},
// Full set of Windows shim options:
// https://pkg.go.dev/github.com/Microsoft/hcsshim/cmd/containerd-shim-runhcs-v1/options#Options
Options: map[string]any{
// ScrubLogs enables removing environment variables and other potentially sensitive information
// from logs
"ScrubLogs": true,
},
},
"runhcs-wcow-hypervisor": {
Type: "io.containerd.runhcs.v1",
Expand All @@ -67,6 +74,9 @@ func DefaultRuntimeConfig() RuntimeConfig {
// Full set of Windows shim options:
// https://pkg.go.dev/github.com/Microsoft/hcsshim/cmd/containerd-shim-runhcs-v1/options#Options
Options: map[string]any{
// ScrubLogs enables removing environment variables and other potentially sensitive information
// from logs
"ScrubLogs": true,
// SandboxIsolation specifies the isolation level of the sandbox.
// PROCESS (0) and HYPERVISOR (1) are the valid options.
"SandboxIsolation": 1,
Expand Down
Loading