Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private int[] containerPorts() {

@Override
public String defaultImage() {
return "registry.redhat.io/amq7/amq-broker-rhel8:7.12.3";
return "registry.redhat.io/amq7/amq-broker-rhel9:7.13.3";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ public class OpenshiftAMQBroker extends AMQBroker implements OpenshiftDeployable
WithName {
private static final Logger LOG = LoggerFactory.getLogger(OpenshiftAMQBroker.class);
private static final String SSL_SECRET_NAME = "tnb-ssl-secret";
public static final String OPERATOR_NAME = "amq-broker-rhel8";
public static final String OPERATOR_CHANNEL = "7.12.x";
public static final String OPERATOR_NAME = "amq-broker-rhel9";
public static final String OPERATOR_CHANNEL = "7.13.x";

@Override
public void create() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public Predicate<Pod> podSelector() {

@Override
public String defaultImage() {
return "registry.redhat.io/amq7/amq-broker-rhel8:7.11.0";
return "registry.redhat.io/amq7/amq-broker-rhel9:7.13.3";
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion system-x/services/jms/ibm-mq/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<name>TNB :: System-X :: Services :: JMS :: IBM-MQ</name>

<properties>
<ibm.mq.version>9.4.2.0</ibm.mq.version>
<ibm.mq.version>9.4.5.0</ibm.mq.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ protected int clientPort() {

// In 9.4 the environment variable for password is deprecated, so for the next bump it will be needed to migrate to docker secrets
public String defaultImage() {
return "icr.io/ibm-messaging/mq:9.4.2.0-r2";
return "icr.io/ibm-messaging/mq:9.4.5.0-r1";
}

/**
Expand Down