Kafka Azure Storage Blob with Exchange Pooling Example: Use application.properties to fill Kamelet parameters
diff --git a/profiling/kafka-azure-storage-blob-exchange-pooling/data/application.properties b/profiling/kafka-azure-storage-blob-exchange-pooling/data/application.properties
index e94cf13..bde75d2 100644
--- a/profiling/kafka-azure-storage-blob-exchange-pooling/data/application.properties
+++ b/profiling/kafka-azure-storage-blob-exchange-pooling/data/application.properties
@@ -31,3 +31,15 @@
 camel.k.sources[0].location = file:/etc/camel/sources/routes.yaml
 camel.k.sources[0].type     = source
 
+#
+# Azure Storage Blob properties
+#
+camel.kamelet.azure-storage-blob-sink.containerName = containerName
+camel.kamelet.azure-storage-blob-sink.accessKey     = accessKey
+camel.kamelet.azure-storage-blob-sink.accountName   = accountName
+
+#
+# Kafka properties
+#
+camel.kamelet.kafka-not-secured-source.brokers = localhost:9092
+camel.kamelet.kafka-not-secured-source.topic   = testtopic
diff --git a/profiling/kafka-azure-storage-blob-exchange-pooling/data/sources/routes.yaml b/profiling/kafka-azure-storage-blob-exchange-pooling/data/sources/routes.yaml
index e813717..1905dfe 100644
--- a/profiling/kafka-azure-storage-blob-exchange-pooling/data/sources/routes.yaml
+++ b/profiling/kafka-azure-storage-blob-exchange-pooling/data/sources/routes.yaml
@@ -18,14 +18,7 @@
 - route:
     from: 
       uri: "kamelet:kafka-not-secured-source"
-      parameters:
-        brokers: "localhost:9092"
-        topic: "testtopic"
     steps:
       - to: 
           uri: "kamelet:azure-storage-blob-sink"
-          parameters:
-            containerName: "container"
-            accessKey: "accessKey"
-            accountName: "account"