I want to find a way to deploy an etcd cluster as a Docker Swarm service that would automatically configure itself without any interaction. Basically, I think of something in spirit of this command:
docker service create --name etcd --replicas 3 my-custom-image/etcd
I'm assuming that overlay network is configured to be secure and provide both encryption and authentication, so I believe I don't need TLS, not even --auto-tls
. Don't want an extra headache finding a way to provision the certificates, when this can be solved on the another layer.
I need an unique --name
for each instance, but I can get that from an entrypoint script that would use export ETCD_NAME=$(hostname --short)
.
The problem is, I'm stuck on initial configuration. Based on the clustering guide there are three options, but none seems to fit:
- The DNS discovery scenario is closest to what I'm looking for, but Docker doesn't support DNS SRV records discovery at the moment. I can lookup
etcd
and I will get all the IPs of my nodes' containers, but there are no_etcd-server._tcp
records. - I cannot automatically build
ETCD_INITIAL_CLUSTER
because while I know the IPs, I don't know the names of the other nodes and I'm not aware about any way to figure those out. (I'm not going to expose Docker API socket to etcd container for this.) - There is no preexisting etcd cluster, and while supplying the initial configuration URI from discovery.etcd.io is a possible workaround I'm interested in not doing this. I'm aiming for "just deploy a stack from this
docker-compose.yml
and it'll automatically do the right thing, no questions asked" no-brainer scenario.
Is there any trick I can pull?