Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Usage:
```

### 1.20-SNAPSHOT
* Fix #3918: Update documentation for jkube-images 0.0.28 changes
* Fix #3902: Bump pack CLI from 0.34.2 to 0.40.7 and update default builder image to `paketobuildpacks/builder-jammy-base`
* Fix #3904: Bump jib-core from 0.27.3 to 0.28.1
* Fix #3900: BuildPackBuildService honors global `imagePullPolicy` when no per-image policy is set
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Here is an example of providing Groovy DSL configuration for a simple image:
name = "jkube/${project.name}:${project.version}" //<1>
alias = "camel-service" //<2>
build {
from = "quay.io/jkube/jkube-java:0.0.13" //<3>
from = "quay.io/jkube/jkube-java:0.0.28" //<3>
assembly { //<4>
targetDir = "/deployments" //<5>
layers = [{ //<6>
Expand Down Expand Up @@ -92,7 +92,7 @@ This configuration would copy a jar file located in `build/libs/` to `/deployme
image {
name = "${project.group}/${project.name}:${project.version}"
build {
from = "quay.io/jkube/jkube-java:0.0.13"
from = "quay.io/jkube/jkube-java:0.0.28"
assembly {
targetDir = "/deployments"
layers = [{
Expand Down Expand Up @@ -121,7 +121,7 @@ This example would copy `build/dependencies` directory to `/deployments` directo
image {
name = "${project.group}/${project.name}:${project.version}"
build {
from = "quay.io/jkube/jkube-java:0.0.13"
from = "quay.io/jkube/jkube-java:0.0.28"
assembly {
targetDir = "/deployments"
layers = [{
Expand Down
2 changes: 1 addition & 1 deletion jkube-kit/doc/src/main/asciidoc/inc/_faq.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:

The above will generate an environment variable `$FOO` of value `bar`

For a full list of the environments used in java base images, https://github.com/eclipse-jkube/jkube-images#available-imagesk[see this list]
For a full list of the environments used in java base images, https://github.com/eclipse-jkube/jkube-images#available-images[see this list]

=== How do I define a system property?

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ If the project is already JakartaEE compliant, it is recommanded to set the weba

To keep using Tomcat 9, set the properties:

* `jkube.generator.webapp.from` to `quay.io/jkube/jkube-tomcat9:0.0.16`
* `jkube.generator.webapp.from` to `quay.io/jkube/jkube-tomcat9:0.0.28`
* `jkube.generator.webapp.cmd` to `/usr/local/s2i/run`
ifdef::doc-openshift[]
* `jkube.generator.webapp.supportsS2iBuild` to `true`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ https://github.com/eclipse-jkube/jkube/tree/master/quickstarts/maven/zero-config

This setup make some opinionated decisions for you:

* As base image https://quay.io/repository/jkube/jkube-java-binary-s2i[jkube/jkube-java-binary-s2i]
* As base image https://quay.io/repository/jkube/jkube-java[jkube/jkube-java]
is chosen which enables https://www.jolokia.org[Jolokia] and https://github.com/prometheus/jmx_exporter[jmx_exporter].
It also comes with a sophisticated https://github.com/jboss-openshift/cct_module/tree/master/jboss/container/java/run/bash[startup script].
* It will create a Kubernetes http://kubernetes.io/docs/user-guide/deployments/[Deployment] and a
Expand Down
Loading