Skip to content

Commit

Permalink
Update(CleanupTests): Log deletion of registry
Browse files Browse the repository at this point in the history
  • Loading branch information
rkubis committed Feb 3, 2025
1 parent 7d0b1a4 commit c739421
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ public void cleanupCluster() {
ApicurioRegistry3 apicurioRegistry3 = apicurioRegistry3ResourceType.get(Environment.NAMESPACE, Constants.REGISTRY);
// Check if ApicurioRegistry3 instance exists
if (apicurioRegistry3 != null) {
// Log action
LOGGER.info("Deleting ApicurioRegistry3 {}...", apicurioRegistry3.getMetadata().getName());

// Delete ApicurioRegistry3 instance
Kubernetes.deleteResources(Environment.NAMESPACE, Collections.singletonList(apicurioRegistry3));
}
Expand Down

0 comments on commit c739421

Please sign in to comment.