GCP Pub/Sub binding spec

Detailed documentation on the GCP Pub/Sub binding component

配置

要开始 Azure 发布/订阅 绑定,需要创建一个类型为 bindings.gcp.pubsub 的组件。 请参阅本指南,了解如何创建和应用绑定配置。

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: <NAME>
  5. namespace: <NAMESPACE>
  6. spec:
  7. type: bindings.gcp.pubsub
  8. version: v1
  9. metadata:
  10. - name: topic
  11. value: topic1
  12. - name: subscription
  13. value: subscription1
  14. - name: type
  15. value: service_account
  16. - name: project_id
  17. value: project_111
  18. - name: private_key_id
  19. value: *************
  20. - name: client_email
  21. value: name@domain.com
  22. - name: client_id
  23. value: '1111111111111111'
  24. - name: auth_uri
  25. value: https://accounts.google.com/o/oauth2/auth
  26. - name: token_uri
  27. value: https://oauth2.googleapis.com/token
  28. - name: auth_provider_x509_cert_url
  29. value: https://www.googleapis.com/oauth2/v1/certs
  30. - name: client_x509_cert_url
  31. value: https://www.googleapis.com/robot/v1/metadata/x509/<project-name>.iam.gserviceaccount.com
  32. - name: private_key
  33. value: PRIVATE KEY

Warning

以上示例将 Secret 明文存储。 更推荐的方式是使用 Secret 组件, 这里

元数据字段规范

字段必填绑定支持详情示例
topicYOutputGCP Pub/Sub topic name“topic1”
subscriptionYGCP Pub/Sub subscription name“name1”
typeYOutputGCP 凭证类型service_account
project_idYOutputGCP 项目 idproject_id
private_key_idYOutputGCP 私钥 id“privateKeyId”
private_keyYOutputGCP凭证私钥 替换为x509证书12345-12345
client_emailYOutputGCP 客户端邮箱地址“client@email.com”
client_idYOutputGCP 客户端 id0123456789-0123456789
auth_uriYOutputGoogle帐户 OAuth 端点https://accounts.google.com/o/oauth2/auth
token_uriYOutputGoogle帐户token地址https://oauth2.googleapis.com/token
auth_provider_x509_cert_urlYOutputGCP凭证证书地址https://www.googleapis.com/oauth2/v1/certs
client_x509_cert_urlYOutputGCP凭证项目x509证书地址https://www.googleapis.com/robot/v1/metadata/x509/<PROJECT_NAME>.iam.gserviceaccount.com

绑定支持

该组件支持输出绑定,其操作如下:

  • create

相关链接