summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/openshift-cluster/list.yml
Commit message (Collapse)AuthorAgeFilesLines
* Remove unsupported playbooks and utilitiesRussell Teague2017-08-251-24/+0
|
* Optimize the cloud-specific list.yml playbooksLénaïc Huard2016-11-161-12/+2
| | | | | | by removing the need to gather facts on all VMs in order to list them. And prettify the output of AWS list the same way it is done for other cloud providers.
* Update the OpenStack dynamic inventory scriptLénaïc Huard2016-09-201-2/+2
|
* Fix warnings in OpenStack provider with ansible 2.1Lénaïc Huard2016-08-191-1/+1
| | | | Some expressions now need to be enclosed inside `{{…}}`.
* Replace sudo with become when accessing deployment_vars.Andrew Butcher2016-04-271-1/+1
|
* Replace deprecated sudo with become.Andrew Butcher2016-04-251-1/+1
|
* Removing environment and env tags.Kenny Woodson2016-01-041-1/+1
|
* Enforce connection: local and become: no on all localhost playsJason DeTiberus2015-11-301-0/+4
|
* Better structure the output of the list playbookLénaïc Huard2015-11-131-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The list playbook listed the IPs of the VMs without logging their role like: TASK: [debug ] ************************************************************ ok: [10.64.109.37] => { "msg": "public:10.64.109.37 private:192.168.165.5" } ok: [10.64.109.47] => { "msg": "public:10.64.109.47 private:192.168.165.6" } ok: [10.64.109.36] => { "msg": "public:10.64.109.36 private:192.168.165.4" } ok: [10.64.109.215] => { "msg": "public:10.64.109.215 private:192.168.165.2" } The list playbook now prints the information in a more structured way with a list of masters, a list of nodes and the subtype of the nodes like: TASK: [debug ] ************************************************************ ok: [localhost] => { "msg": { "lenaicnewlist": { "master": [ { "name": "10.64.109.215", "private IP": "192.168.165.2", "public IP": "10.64.109.215", "subtype": "default" } ], "node": [ { "name": "10.64.109.47", "private IP": "192.168.165.6", "public IP": "10.64.109.47", "subtype": "compute" }, { "name": "10.64.109.37", "private IP": "192.168.165.5", "public IP": "10.64.109.37", "subtype": "compute" }, { "name": "10.64.109.36", "private IP": "192.168.165.4", "public IP": "10.64.109.36", "subtype": "infra" } ] } } }
* Implement OpenStack providerLénaïc Huard2015-06-081-0/+24