Ansible results
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@maishsk-lin:/opt/git/playground/create-vpc/ansible# for i in {1..3}; do echo "starting run $i"; echo "create"; time ansible-playbook create-vpc.yml ; echo "destroy"; time ansible-playbook remove-vpc.yml ; done | |
Starting run 1 | |
Create | |
[WARNING]: Unable to parse /etc/ansible/hosts as an inventory source | |
[WARNING]: No inventory was parsed, only implicit localhost is available | |
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all' | |
PLAY [VPC creation playbook] ************************************************************************************************************************************************************************************************************* | |
TASK [Create a VPC] ********************************************************************************************************************************************************************************************************************** | |
changed: [localhost] | |
PLAY RECAP ******************************************************************************************************************************************************************************************************************************* | |
localhost : ok=1 changed=1 unreachable=0 failed=0 | |
11.636 | |
Destroy | |
[WARNING]: Unable to parse /etc/ansible/hosts as an inventory source | |
[WARNING]: No inventory was parsed, only implicit localhost is available | |
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all' | |
PLAY [VPC destroy playbook] ************************************************************************************************************************************************************************************************************* | |
TASK [remove a VPC] ********************************************************************************************************************************************************************************************************************** | |
changed: [localhost] | |
PLAY RECAP ******************************************************************************************************************************************************************************************************************************* | |
localhost : ok=1 changed=1 unreachable=0 failed=0 | |
2.562 | |
Starting run 2 | |
Create | |
[WARNING]: Unable to parse /etc/ansible/hosts as an inventory source | |
[WARNING]: No inventory was parsed, only implicit localhost is available | |
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all' | |
PLAY [VPC creation playbook] ************************************************************************************************************************************************************************************************************* | |
TASK [Create a VPC] ********************************************************************************************************************************************************************************************************************** | |
changed: [localhost] | |
PLAY RECAP ******************************************************************************************************************************************************************************************************************************* | |
localhost : ok=1 changed=1 unreachable=0 failed=0 | |
6.045 | |
Destroy | |
[WARNING]: Unable to parse /etc/ansible/hosts as an inventory source | |
[WARNING]: No inventory was parsed, only implicit localhost is available | |
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all' | |
PLAY [VPC destroy playbook] ************************************************************************************************************************************************************************************************************* | |
TASK [remove a VPC] ********************************************************************************************************************************************************************************************************************** | |
changed: [localhost] | |
PLAY RECAP ******************************************************************************************************************************************************************************************************************************* | |
localhost : ok=1 changed=1 unreachable=0 failed=0 | |
2.669 | |
Starting run 3 | |
Create | |
[WARNING]: Unable to parse /etc/ansible/hosts as an inventory source | |
[WARNING]: No inventory was parsed, only implicit localhost is available | |
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all' | |
PLAY [VPC creation playbook] ************************************************************************************************************************************************************************************************************* | |
TASK [Create a VPC] ********************************************************************************************************************************************************************************************************************** | |
changed: [localhost] | |
PLAY RECAP ******************************************************************************************************************************************************************************************************************************* | |
localhost : ok=1 changed=1 unreachable=0 failed=0 | |
6.752 | |
Destroy | |
[WARNING]: Unable to parse /etc/ansible/hosts as an inventory source | |
[WARNING]: No inventory was parsed, only implicit localhost is available | |
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all' | |
PLAY [VPC destroy playbook] ************************************************************************************************************************************************************************************************************* | |
TASK [remove a VPC] ********************************************************************************************************************************************************************************************************************** | |
changed: [localhost] | |
PLAY RECAP ******************************************************************************************************************************************************************************************************************************* | |
localhost : ok=1 changed=1 unreachable=0 failed=0 | |
2.433 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment