Skip to content

Commit

Permalink
Merge pull request #36232 from cescoffier/update-activemq-dev-service
Browse files Browse the repository at this point in the history
Update the AMQP Dev Service image
  • Loading branch information
cescoffier authored Oct 2, 2023
2 parents abff23f + 8cc1daf commit 288e2d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,20 @@ public class AmqpDevServicesBuildTimeConfig {
* The image to use.
* Note that only ActiveMQ Artemis images are supported.
* Specifically, the image repository must end with {@code artemiscloud/activemq-artemis-broker}.
*
* <p>
* Check the <a href="https://quay.io/repository/artemiscloud/activemq-artemis-broker">activemq-artemis-broker on Quay
* page</a>
* to find the available versions.
*/
@ConfigItem(defaultValue = "quay.io/artemiscloud/activemq-artemis-broker:1.0.18")
@ConfigItem(defaultValue = "quay.io/artemiscloud/activemq-artemis-broker:1.0.22")
public String imageName;

/**
* The value of the {@code AMQ_EXTRA_ARGS} environment variable to pass to the container.
* For ActiveMQ Artemis Broker <= 1.0.21, set this property to
* {@code --no-autotune --mapped --no-fsync --relax-jolokia --http-host 0.0.0.0}
*/
@ConfigItem(defaultValue = "--no-autotune --mapped --no-fsync --relax-jolokia --http-host 0.0.0.0")
@ConfigItem(defaultValue = "--no-autotune --mapped --no-fsync --relax-jolokia")
public String extraArgs;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@

/**
* Starts a AMQP 1.0 broker as dev service if needed.
* It uses https://quay.io/repository/artemiscloud/activemq-artemis-broker as image.
* See https://artemiscloud.io/ for details.
* It uses <a href="https://quay.io/repository/artemiscloud/activemq-artemis-broker">activemq-artemis-broker</a> as image.
* See <a href="https://artemiscloud.io/">Artemis Cloud</a> for details.
*/
@BuildSteps(onlyIfNot = IsNormal.class, onlyIf = GlobalDevServicesConfig.Enabled.class)
public class AmqpDevServicesProcessor {
Expand Down

0 comments on commit 288e2d8

Please sign in to comment.