The Google Cloud Pub/Sub Operator is a Kubernetes operator designed to efficiently manage Google Cloud Pub/Sub Topics and Subscriptions.
Google Cloud Pub/Sub is a real-time messaging service provided by Google Cloud Platform that efficiently delivers large volumes of messages from producers to consumers. This operator allows you to manage Pub/Sub resources within your Kubernetes cluster, representing them as Kubernetes resources.
To install this operator,
kubectl apply -f https://github.com/quipper/google-cloud-pubsub-operator/releases/download/v0.11.0/google-cloud-pubsub-operator.yaml
apiVersion: googlecloudpubsuboperator.quipper.github.io/v1
kind: Topic
metadata:
name: your-topic
spec:
projectID: your-project
topicID: your-topic
apiVersion: googlecloudpubsuboperator.quipper.github.io/v1
kind: Subscription
metadata:
name: your-subscription
spec:
subscriptionProjectID: your-project
subscriptionID: your-subscription
topicProjectID: your-project
topicID: your-topic
Contributions to this project are welcome! For instructions on how to contribute, please see CONTRIBUTING.md.