We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 335a10c commit 3e2765aCopy full SHA for 3e2765a
pkg/build/nodeimage/buildcontext.go
@@ -96,13 +96,6 @@ func (c *buildContext) buildImage(bits kube.Bits) error {
96
97
c.logger.V(0).Info("Building in container: " + containerID)
98
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
-
106
// copy artifacts in
107
for _, binary := range bits.BinaryPaths() {
108
// TODO: probably should be /usr/local/bin, but the existing kubelet
0 commit comments