Skip to content

Commit

Permalink
images test
Browse files Browse the repository at this point in the history
  • Loading branch information
jianghang8421 committed Feb 19, 2019
1 parent 3a3fe7b commit c3d74cd
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions pkg/image/export/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ func run(images ...string) error {
return err
}

arm64TargetImages, err := collectionImages(v3.Arm64K8sVersionToRKESystemImages)
if err != nil {
return err
}

for _, arm64Image := range arm64TargetImages {
targetImages = append(targetImages, arm64Image)
}

for _, i := range images {
targetImages = append(targetImages, image.Mirror(i))
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c3d74cd

Please sign in to comment.