Skip to content

Commit 65deaf2

Browse files
committed
wip
Signed-off-by: Attila Mészáros <csviri@gmail.com>
1 parent c3e4a56 commit 65deaf2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/workflowactivationcleanup/WorkflowActivationCleanupReconciler.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
import io.javaoperatorsdk.operator.api.reconciler.*;
44
import io.javaoperatorsdk.operator.api.reconciler.dependent.Dependent;
5+
import io.javaoperatorsdk.operator.api.reconciler.workflow.Workflow;
56

6-
@ControllerConfiguration(dependents = {
7-
@Dependent(type = ConfigMapDependentResource.class,
8-
activationCondition = TestActivcationCondition.class),
9-
})
7+
@ControllerConfiguration(
8+
workflow = @Workflow(dependents = @Dependent(type = ConfigMapDependentResource.class,
9+
activationCondition = TestActivcationCondition.class)))
1010
public class WorkflowActivationCleanupReconciler
1111
implements Reconciler<WorkflowActivationCleanupCustomResource>,
1212
Cleaner<WorkflowActivationCleanupCustomResource> {

0 commit comments

Comments
 (0)