diff --git a/docs/documentation/use-samples.md b/docs/documentation/use-samples.md
index 616a782181..1bc32851a7 100644
--- a/docs/documentation/use-samples.md
+++ b/docs/documentation/use-samples.md
@@ -26,14 +26,14 @@ examples:
# Implementing a Sample Operator
-Add [dependency](https://search.maven.org/search?q=a:operator-framework) to your project with Maven:
+Add [dependency](https://search.maven.org/search?q=a:operator-framework%20AND%20g:io.javaoperatorsdk) to your project with Maven:
```xml
io.javaoperatorsdk
operator-framework
- {see https://search.maven.org/search?q=a:operator-framework for latest version}
+ {see https://search.maven.org/search?q=a:operator-framework%20AND%20g:io.javaoperatorsdk for latest version}
```
@@ -188,14 +188,14 @@ public class QuarkusOperator implements QuarkusApplication {
You can also let Spring Boot wire your application together and automatically register the controllers.
-Add [this dependency](https://search.maven.org/search?q=a:operator-framework-spring-boot-starter) to your project:
+Add [this dependency](https://search.maven.org/search?q=a:operator-framework-spring-boot-starter%20AND%20g:io.javaoperatorsdk) to your project:
```xml
io.javaoperatorsdk
operator-framework-spring-boot-starter
- {see https://search.maven.org/search?q=a:operator-framework-spring-boot-starter for
+ {see https://search.maven.org/search?q=a:operator-framework-spring-boot-starter%20AND%20g:io.javaoperatorsdk for
latest version}
@@ -224,7 +224,7 @@ necessary, but it doesn't need real access to a Kubernetes cluster.
io.javaoperatorsdk
operator-framework-spring-boot-starter-test
- {see https://search.maven.org/search?q=a:operator-framework-spring-boot-starter for
+ {see https://search.maven.org/search?q=a:operator-framework-spring-boot-starter%20AND%20g:io.javaoperatorsdk for
latest version}
diff --git a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcher.java b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcher.java
index 02c8f8cbb3..14ba12636a 100644
--- a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcher.java
+++ b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcher.java
@@ -6,7 +6,6 @@
import io.fabric8.kubernetes.api.model.HasMetadata;
import io.fabric8.kubernetes.api.model.KubernetesResourceList;
import io.fabric8.kubernetes.client.CustomResource;
-import io.fabric8.kubernetes.client.KubernetesClientException;
import io.fabric8.kubernetes.client.dsl.MixedOperation;
import io.fabric8.kubernetes.client.dsl.Resource;
import io.javaoperatorsdk.operator.api.ObservedGenerationAware;
@@ -49,13 +48,6 @@ public ReconciliationDispatcher(Controller controller) {
public PostExecutionControl handleExecution(ExecutionScope executionScope) {
try {
return handleDispatch(executionScope);
- } catch (KubernetesClientException e) {
- log.info(
- "Kubernetes exception {} {} during event processing, {} failed",
- e.getCode(),
- e.getMessage(),
- executionScope);
- return PostExecutionControl.exceptionDuringExecution(e);
} catch (RuntimeException e) {
log.error("Error during event processing {} failed.", executionScope, e);
return PostExecutionControl.exceptionDuringExecution(e);
diff --git a/pom.xml b/pom.xml
index 4dc1a81a7c..fac0ce7e01 100644
--- a/pom.xml
+++ b/pom.xml
@@ -57,15 +57,15 @@
1.8.2
2.11
- 3.9.0
+ 3.10.0
3.0.0-M5
- 3.3.1
+ 3.3.2
3.2.0
3.2.1
3.2.2
3.1.0
3.0.1
- 1.6.8
+ 1.6.11
2.8.2
2.5.2
5.0.0
diff --git a/sample-operators/mysql-schema/pom.xml b/sample-operators/mysql-schema/pom.xml
index bd73c6390f..7d25dc2f5f 100644
--- a/sample-operators/mysql-schema/pom.xml
+++ b/sample-operators/mysql-schema/pom.xml
@@ -105,7 +105,7 @@
org.apache.maven.plugins
maven-compiler-plugin
- 3.9.0
+ 3.10.0
diff --git a/sample-operators/tomcat-operator/pom.xml b/sample-operators/tomcat-operator/pom.xml
index 21c3fbc405..4381948214 100644
--- a/sample-operators/tomcat-operator/pom.xml
+++ b/sample-operators/tomcat-operator/pom.xml
@@ -90,7 +90,7 @@
org.apache.maven.plugins
maven-compiler-plugin
- 3.9.0
+ 3.10.0
diff --git a/sample-operators/webpage/k8s/operator.yaml b/sample-operators/webpage/k8s/operator.yaml
index 926b2c31e2..cfdb1fe47c 100644
--- a/sample-operators/webpage/k8s/operator.yaml
+++ b/sample-operators/webpage/k8s/operator.yaml
@@ -92,7 +92,7 @@ rules:
- apiGroups:
- "sample.javaoperatorsdk"
resources:
- - webservers
- - webservers/status
+ - webpages
+ - webpages/status
verbs:
- '*'
diff --git a/sample-operators/webpage/pom.xml b/sample-operators/webpage/pom.xml
index 4ec7713b93..e79e07ac4f 100644
--- a/sample-operators/webpage/pom.xml
+++ b/sample-operators/webpage/pom.xml
@@ -60,7 +60,7 @@
org.apache.maven.plugins
maven-compiler-plugin
- 3.9.0
+ 3.10.0