1# This is the sample configuration file to start new etcd
2# single node cluster.
3
4# Initial cluster state ('new' or 'existing').
5ETCD_INITIAL_CLUSTER_STATE='new'
6
7# Path to the data directory.
8ETCD_DATA_DIR='/var/lib/etcd'
9
10# Time (in milliseconds) of a heartbeat interval.
11ETCD_HEARTBEAT_INTERVAL=100
12
13# Time (in milliseconds) for an election to timeout.
14ETCD_ELECTION_TIMEOUT=1000
15
16# List of comma separated URLs to listen on for peer traffic.
17ETCD_LISTEN_PEER_URLS=http://localhost:2380
18
19# List of comma separated URLs to listen on for client traffic.
20ETCD_LISTEN_CLIENT_URLS=http://localhost:2379
21
22# List of this member's peer URLs to advertise to the rest of the cluster.
23# The URLs needed to be a comma-separated list.
24ETCD_INITIAL_ADVERTISE_PEER_URLS=http://localhost:2380
25
26# List of this member's client URLs to advertise to the public.
27# The URLs needed to be a comma-separated list.
28ETCD_ADVERTISE_CLIENT_URLS=http://localhost:2379
29
30# Enable info-level logging for etcd.
31ETCD_LOG_LEVEL='info'
32
33# Specify 'stdout' or 'stderr' to skip journald logging even when running under systemd.
34ETCD_LOG_OUTPUTS='default'
35
36# etcd is not officially supported on arm64
37ETCD_UNSUPPORTED_ARCH='arm'
38
39# Human-readable name for this member.
40# ETCD_NAME='default'
41
42# Initial cluster configuration for bootstrapping.
43# ETCD_INITIAL_CLUSTER='default=http://localhost:2380'
44