Skip to content

Commit

Permalink
Merge pull request #5037 from k0sproject/backport-5035-to-release-1.28
Browse files Browse the repository at this point in the history
[Backport release-1.28] bug: disable oci bundle loader on byocri
  • Loading branch information
jnummelin authored Sep 25, 2024
2 parents eafb104 + c8bf21c commit d307595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/worker/worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ func (c *Command) Start(ctx context.Context) error {

if c.CriSocket == "" {
componentManager.Add(ctx, worker.NewContainerd(c.Logging["containerd"], c.K0sVars, workerConfig))
componentManager.Add(ctx, worker.NewOCIBundleReconciler(c.K0sVars))
}

componentManager.Add(ctx, worker.NewOCIBundleReconciler(c.K0sVars))
if c.WorkerProfile == "default" && runtime.GOOS == "windows" {
c.WorkerProfile = "default-windows"
}
Expand Down

0 comments on commit d307595

Please sign in to comment.