We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3317db1 commit bcbe708Copy full SHA for bcbe708
environment/container/containerd/containerd.go
@@ -3,6 +3,7 @@ package containerd
3
import (
4
"context"
5
_ "embed"
6
+ "fmt"
7
"path/filepath"
8
"time"
9
@@ -103,5 +104,5 @@ func (c containerdRuntime) Version(ctx context.Context) string {
103
104
}
105
106
func (c *containerdRuntime) Update(ctx context.Context) error {
- return nil
107
+ return fmt.Errorf("update not supported for the %s runtime", Name)
108
0 commit comments