CAMEL-20108: Update Camel examples to use Camel Case instead of deprecated kebab case
diff --git a/kamelet-chucknorris/src/main/resources/kamelets/chuck-norris-source.kamelet.yaml b/kamelet-chucknorris/src/main/resources/kamelets/chuck-norris-source.kamelet.yaml
index aa60e29..e62299b 100644
--- a/kamelet-chucknorris/src/main/resources/kamelets/chuck-norris-source.kamelet.yaml
+++ b/kamelet-chucknorris/src/main/resources/kamelets/chuck-norris-source.kamelet.yaml
@@ -37,6 +37,6 @@
         period: "{{period}}"
       steps:
         - to: "https://api.chucknorris.io/jokes/random"
-        - set-body:
+        - setBody:
             jsonpath: "$.value"
         - to: "kamelet:sink"
diff --git a/routes-configuration/src/main/resources/myerror/yaml-error.yaml b/routes-configuration/src/main/resources/myerror/yaml-error.yaml
index 2ae8c64..62935d2 100644
--- a/routes-configuration/src/main/resources/myerror/yaml-error.yaml
+++ b/routes-configuration/src/main/resources/myerror/yaml-error.yaml
@@ -15,10 +15,10 @@
 ## limitations under the License.
 ## ---------------------------------------------------------------------------
 
-- route-configuration:
+- routeConfiguration:
     id: "yamlError"
-    on-exception:
-    - on-exception:
+    onException:
+    - onException:
         handled:
           constant: "true"
         exception:
diff --git a/routes-configuration/src/main/resources/myroutes/my-yaml-route.yaml b/routes-configuration/src/main/resources/myroutes/my-yaml-route.yaml
index 2d28a3a..969796b 100644
--- a/routes-configuration/src/main/resources/myroutes/my-yaml-route.yaml
+++ b/routes-configuration/src/main/resources/myroutes/my-yaml-route.yaml
@@ -17,17 +17,17 @@
 
 - route:
     # refer to the route configuration by the id to use for this route
-    route-configuration-id: "yamlError"
+    routeConfigurationId: "yamlError"
     from:
       uri: "timer:yaml?period=3s"
       steps:
-        - set-body:
+        - setBody:
             simple: "Timer fired ${header.CamelTimerCounter} times"
         - to:
             uri: "log:yaml"
             parameters:
-              show-body-type: false
-              show-exchange-pattern: false
-        - throw-exception:
-            exception-type: "java.lang.IllegalArgumentException"
+              showBodyType: false
+              showEchangePattern: false
+        - throwException:
+            exceptionType: "java.lang.IllegalArgumentException"
             message: "Error from yaml"