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