Couchbase

Detailed information on the Couchbase state store component

配置

To setup Couchbase state store create a component of type state.couchbase. 请参阅本指南,了解如何创建和应用状态存储配置。

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: <NAME>
  5. namespace: <NAMESPACE>
  6. spec:
  7. type: state.couchbase
  8. version: v1
  9. metadata:
  10. - name: couchbaseURL
  11. value: <REPLACE-WITH-URL> # Required. Example: "http://localhost:8091"
  12. - name: username
  13. value: <REPLACE-WITH-USERNAME> # Required.
  14. - name: password
  15. value: <REPLACE-WITH-PASSWORD> # Required.
  16. - name: bucketName
  17. value: <REPLACE-WITH-BUCKET> # Required.

Warning

以上示例将密钥明文存储, It is recommended to use a secret store for the secrets as described here.

元数据字段规范

字段必填详情Example
couchbaseURLYThe URL of the Couchbase serverhttp://localhost:8091
usernameYThe username for the database“user”
passwordYThe password for access“password”
bucketNameYThe bucket name to write to“bucket”

Setup Couchbase

You can run Couchbase locally using Docker:

  1. docker run -d --name db -p 8091-8094:8091-8094 -p 11210:11210 couchbase

You can then interact with the server using localhost:8091 and start the server setup.

The easiest way to install Couchbase on Kubernetes is by using the Helm chart:

  1. helm repo add couchbase https://couchbase-partners.github.io/helm-charts/
  2. helm install couchbase/couchbase-operator
  3. helm install couchbase/couchbase-cluster

相关链接