We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f83bc8 commit f83d152Copy full SHA for f83d152
pkg/executor/build.go
@@ -350,7 +350,10 @@ func (s *stageBuilder) build() error {
350
}
351
352
initSnapshotTaken := false
353
- if s.opts.SingleSnapshot || s.opts.RunV2 {
+ // Comment out the RunV2 check since this seems to create a seemingly useless
354
+ // snapshot.
355
+ // https://github.com/GoogleContainerTools/kaniko/issues/2800
356
+ if s.opts.SingleSnapshot /* || s.opts.RunV2 */ {
357
if err := s.initSnapshotWithTimings(); err != nil {
358
return err
359
0 commit comments