summaryrefslogtreecommitdiffstats
path: root/ci/ansible/roles/osdsdb/scenarios/container.yml
blob: d32057d8646e2652de5595e6dc74f3916e22e0e9 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: run etcd containerized service
  docker:
    name: myetcd
    image: "{{ etcd_docker_image }}"
    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"