Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

don't use digests for preloaded images #3177

Merged
merged 1 commit into from Apr 18, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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