blob: afbd15b5f0e5868710acf6c943e894ee1a5916fd (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
- name: run etcd containerized service
docker:
name: myetcd
image: quay.io/coreos/etcd:latest
command: /usr/local/bin/etcd --advertise-client-urls http://{{ etcd_host }}:{{ etcd_port }} --listen-client-urls http://{{ etcd_host }}:{{ etcd_port }} -advertise-client-urls http://{{ etcd_host }}:{{ etcd_peer_port }} -listen-peer-urls http://{{ etcd_host }}:{{ etcd_peer_port }}
state: started
net: host
volumes:
- "/usr/share/ca-certificates/:/etc/ssl/certs"
|