use of io.strimzi.systemtest.resources.ResourceItem in project strimzi-kafka-operator by strimzi.
the class HelmResource method create.
public void create(ExtensionContext extensionContext, long operationTimeout, long reconciliationInterval) {
ResourceManager.STORED_RESOURCES.computeIfAbsent(extensionContext.getDisplayName(), k -> new Stack<>());
ResourceManager.STORED_RESOURCES.get(extensionContext.getDisplayName()).push(new ResourceItem(this::delete));
this.clusterOperator(operationTimeout, reconciliationInterval);
}
Aggregations