diff options
author | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-13 20:00:20 +0200 |
---|---|---|
committer | Kristian Lyngstol <kristian@bohemians.org> | 2016-05-13 20:00:20 +0200 |
commit | afe950d0ef2d6cb192bbe2a1013be5915c47eaaa (patch) | |
tree | 96cb6cb3aae653373b1c14bbce84fc0943d0594d /ansible/roles/basics | |
parent | dc4daaae70171d4113c0eaa2f3773a4223f2b94c (diff) |
Ansible: Start the move to Gondul-naming
Diffstat (limited to 'ansible/roles/basics')
-rw-r--r-- | ansible/roles/basics/tasks/main.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ansible/roles/basics/tasks/main.yml b/ansible/roles/basics/tasks/main.yml index a0d2e13..dc13f2e 100644 --- a/ansible/roles/basics/tasks/main.yml +++ b/ansible/roles/basics/tasks/main.yml @@ -30,17 +30,17 @@ state: started net: bridge links: "{{ item.links }}" - volumes: [ "{{ pwd.stdout }}/:/opt/nms" ] + volumes: [ "{{ pwd.stdout }}/:/opt/gondul" ] with_items: "{{ images }}" tags: - start -- name: workaround to get nms-varnish-front-ip - shell: "docker inspect nms-varnish-test | grep IPAddress | sed 's/[^0-9.]//g'" +- name: workaround to get gondul-varnish-front-ip + shell: "docker inspect gondul-varnish | grep IPAddress | sed 's/[^0-9.]//g'" register: ip tags: - start -- name: workaround to get nms-front-ip - shell: "docker inspect nms-front-test | grep IPAddress | sed 's/[^0-9.]//g'" +- name: workaround to get gondul-front-ip + shell: "docker inspect gondul-front | grep IPAddress | sed 's/[^0-9.]//g'" register: ipfront tags: - start |