Skip to content

Commit f7e5c8e

Browse files
authored
Merge pull request #3521 from BenTheElder/bump-base5
bump base image
2 parents 749005b + 455f9e7 commit f7e5c8e

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

Diff for: pkg/apis/config/defaults/image.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ limitations under the License.
1818
package defaults
1919

2020
// Image is the default for the Config.Image field, aka the default node image.
21-
const Image = "kindest/node:v1.29.1@sha256:a0cc28af37cf39b019e2b448c54d1a3f789de32536cb5a5db61a49623e527144"
21+
const Image = "kindest/node:v1.29.1@sha256:0c06baa545c3bb3fbd4828eb49b8b805f6788e18ce67bff34706ffa91866558b"

Diff for: pkg/build/nodeimage/buildcontext.go

-7
Original file line numberDiff line numberDiff line change
@@ -96,13 +96,6 @@ func (c *buildContext) buildImage(bits kube.Bits) error {
9696

9797
c.logger.V(0).Info("Building in container: " + containerID)
9898

99-
// make artifacts directory
100-
// TODO: remove this after the next release, we pre-create this in the base image now
101-
if err = cmder.Command("mkdir", "-p", "/kind/").Run(); err != nil {
102-
c.logger.Errorf("Image build Failed! Failed to make directory %v", err)
103-
return err
104-
}
105-
10699
// copy artifacts in
107100
for _, binary := range bits.BinaryPaths() {
108101
// TODO: probably should be /usr/local/bin, but the existing kubelet

Diff for: pkg/build/nodeimage/defaults.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ const DefaultImage = "kindest/node:latest"
2222
// DefaultBaseImage is the default base image used
2323
// TODO: come up with a reasonable solution to digest pinning
2424
// https://github.com/moby/moby/issues/43188
25-
const DefaultBaseImage = "docker.io/kindest/base:v20240202-8f1494ea"
25+
const DefaultBaseImage = "docker.io/kindest/base:v20240212-c4cadcab"

0 commit comments

Comments
 (0)