github GoogleContainerTools/jib v2.5.0-gradle
jib-gradle-plugin v2.5.0

latest releases: v0.27.0-core, v3.4.2-gradle, v3.4.2-maven...
3 years ago

jib-gradle-plugin

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 and javax.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.

Don't miss a new jib release

NewReleases is sending notifications on new releases.