Skip to content
Snippets Groups Projects
discovery@.service 677 B
Newer Older
[Unit]
Description=%p for %i etcd registration

# Requirements
Requires=etcd.service

[Service]
# Start
## Test whether service is accessible and then register useful information
ExecStart=/bin/bash -c ' \
  sleep 30; \
  while true; do \
    app=`echo %i | cut -d"-" -f1`; \
    ip=`docker inspect --format \'{{.NetworkSettings.IPAddress}}\' $app-%i`; \
    curl -f $ip; \
    if [ $? -eq 0 ]; then \
      etcdctl set /services/web/%i \'{"ip":"\'$ip\'", "port":"80"}\' --ttl 60; \
    else \
      etcdctl rm /services/web/%i; \
    fi; \
    sleep 50; \
  done'

# Stop
ExecStop=-/bin/bash -euxc ' \
  app=`echo %p | cut -d"-" -f1`; \
  /usr/bin/etcdctl rm /services/web/%i