Skip to content

Commit

Permalink
Revert "Change containerd image leases from 24h to permanent (k3s-io#…
Browse files Browse the repository at this point in the history
…3452)" (k3s-io#3461)

This reverts commit 86b3ba8.
  • Loading branch information
dereknola authored Jun 15, 2021
1 parent 86b3ba8 commit b74c499
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions pkg/agent/containerd/containerd.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import (
"github.com/containerd/containerd"
"github.com/containerd/containerd/errdefs"
"github.com/containerd/containerd/images"
"github.com/containerd/containerd/leases"
"github.com/containerd/containerd/namespaces"
"github.com/containerd/containerd/reference/docker"
"github.com/klauspost/compress/zstd"
Expand Down Expand Up @@ -176,24 +175,11 @@ func preloadImages(ctx context.Context, cfg *config.Node) error {

// Ensure that nothing else can modify the image store while we're importing,
// and that our images are imported into the k8s.io namespace
ctx = namespaces.WithNamespace(ctx, "k8s.io")
// At startup all images in the store with a lease are cleared
ls := client.LeasesService()
existingLeases, err := ls.List(ctx)
if err != nil {
return err
}

for _, lease := range existingLeases {
logrus.Debugf("Deleting existing lease: %v", lease)
ls.Delete(ctx, lease)
}

// Any images found on import are given a lease that never expires
_, err = ls.Create(ctx, leases.WithRandomID())
ctx, done, err := client.WithLease(namespaces.WithNamespace(ctx, "k8s.io"))
if err != nil {
return err
}
defer done(ctx)

for _, fileInfo := range fileInfos {
if fileInfo.IsDir() {
Expand Down

0 comments on commit b74c499

Please sign in to comment.