etcd

Detailed information on the etcd state store component

Setup an etcd state store

You can run etcd locally using Docker:

  1. docker run -d --name etcd bitnami/etcd

You can then interact with the server using localhost:2379.

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

  1. helm repo add incubator http://storage.googleapis.com/kubernetes-charts-incubator
  2. helm install etcd incubator/etcd

This will install etcd into the default namespace. To interact with etcd, find the service with: kubectl get svc etcd-etcd.

For example, if installing using the example above, the etcd host address would be:

etcd-etcd.default.svc.cluster.local:2379

Create a Dapr component

The next step is to create a Dapr component for etcd.

Create the following YAML file named etcd.yaml:

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: <NAME>
  5. namespace: <NAMESPACE>
  6. spec:
  7. type: state.etcd
  8. version: v1
  9. metadata:
  10. - name: endpoints
  11. value: <REPLACE-WITH-COMMA-DELIMITED-ENDPOINTS> # Required. Example: "etcd-etcd.default.svc.cluster.local:2379"
  12. - name: dialTimeout
  13. value: <REPLACE-WITH-DIAL-TIMEOUT> # Required. Example: "5s"
  14. - name: operationTimeout
  15. value: <REPLACE-WITH-OPERATION-TIMEOUT> # Optional. default: "10S"

Warning

The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described here.

Apply the configuration

In Kubernetes

To apply the etcd state store to Kubernetes, use the kubectl CLI:

  1. kubectl apply -f etcd.yaml

Running locally

To run locally, create a components dir containing the YAML file and provide the path to the dapr run command with the flag --components-path.

Last modified February 16, 2021: Merge pull request #1235 from dapr/update-v0.11 (b4e9fbb)