GoogleContainerTools / GoogleContainerTools/jib

Allow building OCI tars with multiple tags.

Open
#2,190 4 comments 0 reactions 0 assignees View on GitHub
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

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.