Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ boolean isLocal() {
.withReconciler(new MySQLSchemaReconciler()) // configuration for schema comes from
// SchemaDependentResource annotation
.withInfrastructure(infrastructure)
.withDeleteCRDs(false)
.withPortForward(MY_SQL_NS, "app", "mysql", 3306, SchemaDependentResource.LOCAL_PORT)
.build()
: ClusterDeployedOperatorExtension.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class OperationsE2E {
? LocallyRunOperatorExtension.builder()
.withReconciler(new OperationsReconciler1())
.withReconciler(new OperationsReconciler2())
.withDeleteCRDs(false)
.withConfigurationService(
c -> c.withMetrics(OperationsSampleOperator.initOTLPMetrics(true)))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ boolean isLocal() {
isLocal()
? LocallyRunOperatorExtension.builder()
.waitForNamespaceDeletion(false)
.withDeleteCRDs(false)
.withReconciler(new TomcatReconciler())
.withReconciler(new WebappReconciler(client))
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public WebPageOperatorE2E() throws FileNotFoundException {}
isLocal()
? LocallyRunOperatorExtension.builder()
.waitForNamespaceDeletion(false)
.withDeleteCRDs(false)
Comment thread
csviri marked this conversation as resolved.
.withReconciler(new WebPageReconciler())
.build()
: ClusterDeployedOperatorExtension.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public WebPageOperatorManagedDependentResourcesE2E() throws FileNotFoundExceptio
isLocal()
? LocallyRunOperatorExtension.builder()
.waitForNamespaceDeletion(false)
.withDeleteCRDs(false)
.withReconciler(new WebPageManagedDependentsReconciler())
.build()
: ClusterDeployedOperatorExtension.builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public WebPageOperatorStandaloneDependentResourcesE2E() throws FileNotFoundExcep
isLocal()
? LocallyRunOperatorExtension.builder()
.waitForNamespaceDeletion(false)
.withDeleteCRDs(false)
.withReconciler(new WebPageStandaloneDependentsReconciler())
.build()
: ClusterDeployedOperatorExtension.builder()
Expand Down
Loading