Skip to content

Commit

Permalink
Add new CR condition type
Browse files Browse the repository at this point in the history
  • Loading branch information
michalxo committed Jan 11, 2024
1 parent 6982aee commit e3233a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ public interface ArtemisConstants {
String CONDITION_TYPE_DEPLOYED = "Deployed";
String CONDITION_TYPE_READY = "Ready";
String CONDITION_TYPE_VALID = "Valid";
String CONDITION_TYPE_BROKER_VERSION_ALIGNED = "BrokerVersionAligned";
String CONDITION_STATUS_READY = "AllPodsReady";
String CONDITION_REASON_VALIDATION = "ValidationSucceded";
String CONDITION_REASON_ALL_PODS_READY = "AllPodsReady";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ void testBrokerCRValidityTest() {
hasProperty("type", is(ArtemisConstants.CONDITION_TYPE_VALID)),
hasProperty("type", is(ArtemisConstants.CONDITION_TYPE_BROKER_PROPERTIES_APPLIED)),
hasProperty("type", is(ArtemisConstants.CONDITION_TYPE_READY)),
hasProperty("type", is(ArtemisConstants.CONDITION_TYPE_DEPLOYED))
hasProperty("type", is(ArtemisConstants.CONDITION_TYPE_DEPLOYED)),
hasProperty("type", is(ArtemisConstants.CONDITION_TYPE_BROKER_VERSION_ALIGNED))
));
ResourceManager.deleteArtemis(testNamespace, broker);
}
Expand Down

0 comments on commit e3233a7

Please sign in to comment.