GoogleContainerTools / GoogleContainerTools/jib
Allow building OCI tars with multiple tags.
Open
area/jib-cli
area/jib-core
area/jib-gradle-plugin
area/jib-maven-plugin
enhancement
priority:p3
- Dominant language
- Java
- Stars
- 14.5k
- Forks
- 1.5k
- PR merge metrics
- No merged PRs in 30d
Description
This should just a matter of replacing
```
index.addManifest(manifestDescriptor, imageReference.toStringWithTag());
```
with
```
for (String tag : allTargetImageTags) {
index.addManifest(manifestDescriptor, imageReference.withTag(tag).toStringWithTag());
}
```
in `ImageTarball`. Just need a way to test that it works before doing this.
Relevant: opencontainers/image-spec#796, containers/libpod#4646.
Contributor guide
Assessment
This issue has not been assessed yet.