Added Google pubsub Source Kamelet
diff --git a/templates/bindings/camel-k/google-pubsub-source-binding.yaml b/templates/bindings/camel-k/google-pubsub-source-binding.yaml
new file mode 100644
index 0000000..367f326
--- /dev/null
+++ b/templates/bindings/camel-k/google-pubsub-source-binding.yaml
@@ -0,0 +1,19 @@
+apiVersion: camel.apache.org/v1alpha1
+kind: KameletBinding
+metadata:
+  name: google-pubsub-source-binding
+spec:
+  source:
+    ref:
+      kind: Kamelet
+      apiVersion: camel.apache.org/v1alpha1
+      name: google-pubsub-source
+    properties:
+      projectId: "The Project Id"
+      serviceAccountKey: "The Service Account Key"
+  sink:
+    ref:
+      kind: KafkaTopic
+      apiVersion: kafka.strimzi.io/v1beta1
+      name: my-topic
+  
\ No newline at end of file
diff --git a/templates/bindings/core/google-pubsub-source-binding.yaml b/templates/bindings/core/google-pubsub-source-binding.yaml
new file mode 100644
index 0000000..a696002
--- /dev/null
+++ b/templates/bindings/core/google-pubsub-source-binding.yaml
@@ -0,0 +1,10 @@
+- route:
+    from:
+      uri: "kamelet:google-pubsub-source"
+      parameters:
+        projectId: "The Project Id"
+        serviceAccountKey: "The Service Account Key"
+    steps:
+      - to:
+          uri: "log:info"
+    
\ No newline at end of file