Make sure the index also receives the checksums
This commit is contained in:
parent
1c62adeda7
commit
0b59dcfa2d
1 changed files with 13 additions and 1 deletions
|
@ -469,7 +469,19 @@ func (r *Registry) PushRegistryTag(remote, revision, tag, registry string, token
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *Registry) PushImageJSONIndex(indexEp, remote string, imgList []*ImgData, validate bool, regs []string) (*RepositoryData, error) {
|
func (r *Registry) PushImageJSONIndex(indexEp, remote string, imgList []*ImgData, validate bool, regs []string) (*RepositoryData, error) {
|
||||||
imgListJSON, err := json.Marshal(imgList)
|
cleanImgList := []*ImgData{}
|
||||||
|
|
||||||
|
if validate {
|
||||||
|
for _, elem := range imgList {
|
||||||
|
if elem.Checksum != "" {
|
||||||
|
cleanImgList = append(cleanImgList, elem)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
cleanImgList = imgList
|
||||||
|
}
|
||||||
|
|
||||||
|
imgListJSON, err := json.Marshal(cleanImgList)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue