Running a simple test using @EnableMockOperator annotation:
@SpringBootTest
@ActiveProfiles("test")
@EnableMockOperator
public class MyReconcilerSpringBootIT {
@Test
void contextLoads() {
}
}
At the beginning of the execution, my reconciler receives events for each custom resource from my real kubernetes cluster (configured in .kube/config).
Is this correct?