Major Changes
- Incubating feature: can now configure desired platform (architecture and OS) to select the matching manifest from a Docker manifest list. Currently supports building only one image. OCI image indices are not supported. (#1567)
jib.from { image = '... image reference to a manifest list ...' platforms { platform { architecture = 'arm64' os = 'linux' } } }
- Now supports sending client certificate (for example, via the
javax.net.ssl.keyStore
andjavax.net.ssl.keyStorePassword
system properties) and thus enabling mutual TLS authentication. (#2585, #2226) - Fixed reporting a wrong credential helper name when the helper does not exist on Windows. (#2527)
- Also tries
.exe
file extension for credential helpers on Windows. (#2527) - Fixed
NullPointerException
when the"auths":
section in~/.docker/config.json
has an entry with no"auth":
field. (#2535) - New system property
jib.skipExistingImages
(false by default) to skip pushing images (manifests) if the image already exists in the registry. (#2360) - Fixed an issue where Jib cannot infer Kotlin main class that takes no arguments. (#2666)
See CHANGELOG.md for more details.