Comment 8 for bug 1658630

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Related fix merged to fuel-devops (master)

Reviewed: https://review.openstack.org/436136
Committed: https://git.openstack.org/cgit/openstack/fuel-devops/commit/?id=9d9b495c5b9ced42a69446d0bf18612d7eb43315
Submitter: Jenkins
Branch: master

commit 9d9b495c5b9ced42a69446d0bf18612d7eb43315
Author: Dennis Dmitriev <email address hidden>
Date: Mon Feb 20 20:24:15 2017 +0200

    Extend 'slave-ip-list' CLI options

    - show address pool names or specify an --address-pool-name=<...>
    - show node names or set --ip-only flag

    Output examples:

    $ dos.py slave-ip-list ac_linear_test
    public-pool01: master,10.100.0.128 slave-0,10.100.0.129 slave-1,10.100.0.130
    neutron-pool01: master,10.100.2.2 slave-0,10.100.2.3 slave-1,10.100.2.4
    private-pool01: master,10.100.1.128 slave-0,10.100.1.129 slave-1,10.100.1.130

    $ dos.py slave-ip-list ac_linear_test --ip-only
    public-pool01: 10.100.0.128 10.100.0.129 10.100.0.130
    neutron-pool01: 10.100.2.2 10.100.2.3 10.100.2.4
    private-pool01: 10.100.1.128 10.100.1.129 10.100.1.130

    $ dos.py slave-ip-list ac_linear_test --address-pool-name=public-pool01
    master,10.100.0.128 slave-0,10.100.0.129 slave-1,10.100.0.130

    $ dos.py slave-ip-list ac_linear_test --address-pool-name=public-pool01 --ip-only
    10.100.0.128 10.100.0.129 10.100.0.130

    Change-Id: I75635f73b90f37d9e50de1772bc7da6720c41cec
    Related-Bug:#1658630