diff --git a/jkube-kit/doc/src/main/asciidoc/inc/_integrations.adoc b/jkube-kit/doc/src/main/asciidoc/inc/_integrations.adoc index b381ad14b4..c819ca7cf3 100644 --- a/jkube-kit/doc/src/main/asciidoc/inc/_integrations.adoc +++ b/jkube-kit/doc/src/main/asciidoc/inc/_integrations.adoc @@ -88,11 +88,15 @@ endif::[] `pack build` process. If the download for the https://buildpacks.io/docs/tools/pack/[Pack CLI] binary fails, {plugin} looks for any locally installed https://buildpacks.io/docs/tools/pack/[Pack CLI] version. === Buildpack Builder Image -By default {plugin} uses the https://buildpacks.io/docs/concepts/components/builder/[builder image] specified in the https://buildpacks.io/docs/tools/pack/cli/pack_config/[Pack Config] file for building the container image using https://buildpacks.io/docs/tools/pack/[Pack CLI]. - -For example, if the user has this image set in the `$HOME/.pack/config.toml` file: +- If no builder image is configured, then {plugin} uses `paketobuildpacks/builder:base` as the default builder image. +- If builder image is provided in local https://buildpacks.io/docs/tools/pack/cli/pack_config/[Pack Config], {plugin} uses the https://buildpacks.io/docs/concepts/components/builder/[builder image] specified in the file. + For example,if the user has this image set in the `$HOME/.pack/config.toml` file, {plugin} will use `testuser/buildpacks-quarkus-builder:latest` as Buildpacks builder image.: [source,toml,indent=2,subs="verbatim,quotes,attributes"] ---- default-builder-image = "testuser/buildpacks-quarkus-builder:latest" ---- -{plugin} uses `testuser/buildpacks-quarkus-builder:latest` as Buildpacks builder image. If no image is configured, then {plugin} uses `paketobuildpacks/builder:base` as the default builder image. +- It's also possible to configure BuildPack builder image using property or {plugin-configuration-type} configuration. You can use this property to configure buildpacks builder image: +[source,properties,indent=2,subs="verbatim,quotes,attributes"] +---- +jkube.generator.buildpacksBuilderImage = "testuser/buildpacks-quarkus-builder:latest" +----