Skip to content

Commit

Permalink
Merge pull request #3177 from BenTheElder/offline
Browse files Browse the repository at this point in the history
don't use digests for preloaded images
  • Loading branch information
k8s-ci-robot committed Apr 18, 2023
2 parents 49c8845 + c7c65c4 commit 6298ee7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/build/nodeimage/const_cni.go
Expand Up @@ -20,7 +20,7 @@ package nodeimage
The default CNI manifest and images are our own tiny kindnet
*/

const kindnetdImage = "docker.io/kindest/kindnetd:v20230330-48f316cd@sha256:c19d6362a6a928139820761475a38c24c0cf84d507b9ddf414a078cf627497af"
const kindnetdImage = "docker.io/kindest/kindnetd:v20230330-48f316cd"

var defaultCNIImages = []string{kindnetdImage}

Expand Down
4 changes: 2 additions & 2 deletions pkg/build/nodeimage/const_storage.go
Expand Up @@ -25,8 +25,8 @@ NOTE: we have customized it in the following ways:
- install as the default storage class
*/

const storageProvisionerImage = "docker.io/kindest/local-path-provisioner:v0.0.23-kind.0@sha256:f2d0a02831ff3a03cf51343226670d5060623b43a4cfc4808bd0875b2c4b9501"
const storageHelperImage = "docker.io/kindest/local-path-helper:v20230330-48f316cd@sha256:135203f2441f916fb13dad1561d27f60a6f11f50ec288b01a7d2ee9947c36270"
const storageProvisionerImage = "docker.io/kindest/local-path-provisioner:v0.0.23-kind.0"
const storageHelperImage = "docker.io/kindest/local-path-helper:v20230330-48f316cd"

// image we need to preload
var defaultStorageImages = []string{storageProvisionerImage, storageHelperImage}
Expand Down

0 comments on commit 6298ee7

Please sign in to comment.