Added Kubernetes Namespaces Source Kamelet
diff --git a/templates/bindings/camel-k/kubernetes-namespaces-source-binding.yaml b/templates/bindings/camel-k/kubernetes-namespaces-source-binding.yaml
new file mode 100644
index 0000000..8ab2717
--- /dev/null
+++ b/templates/bindings/camel-k/kubernetes-namespaces-source-binding.yaml
@@ -0,0 +1,19 @@
+apiVersion: camel.apache.org/v1alpha1
+kind: KameletBinding
+metadata:
+  name: kubernetes-namespaces-source-binding
+spec:
+  source:
+    ref:
+      kind: Kamelet
+      apiVersion: camel.apache.org/v1alpha1
+      name: kubernetes-namespaces-source
+    properties:
+      masterUrl: "The Kubernetes Master URL"
+      token: "The Oauth Token"
+  sink:
+    ref:
+      kind: KafkaTopic
+      apiVersion: kafka.strimzi.io/v1beta1
+      name: my-topic
+  
\ No newline at end of file
diff --git a/templates/bindings/core/kubernetes-namespaces-source-binding.yaml b/templates/bindings/core/kubernetes-namespaces-source-binding.yaml
new file mode 100644
index 0000000..19a2e5e
--- /dev/null
+++ b/templates/bindings/core/kubernetes-namespaces-source-binding.yaml
@@ -0,0 +1,10 @@
+- route:
+    from:
+      uri: "kamelet:kubernetes-namespaces-source"
+      parameters:
+        masterUrl: "The Kubernetes Master URL"
+        token: "The Oauth Token"
+    steps:
+      - to:
+          uri: "log:info"
+    
\ No newline at end of file