summaryrefslogtreecommitdiffstats
path: root/ci/ansible/roles/osdsdb/scenarios/container.yml
blob: 8a75ef2940696323a7fbb6c5ca3a8da5a34b8b6c (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"