OpenStack Ansible-like tool for parallel node operations: two-way data transfer, log collection, remote command execution
Go to file
OpenDev Sysadmins 89dc41f0eb OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:50:51 +00:00
doc/source Update documentation to match timmy 1.26.6 code 2017-02-14 15:20:33 -08:00
logrotate.d Add: sample logrotate configuration 2016-10-18 19:06:48 -07:00
specs Change: improve roles string split 2017-10-24 13:40:11 -07:00
timmy Change: improve roles string split 2017-10-24 13:40:11 -07:00
timmy_data Change: use environment variable for openrc in SPT 2017-03-20 16:01:41 -07:00
.gitignore ignore tmp files 2016-06-08 11:40:36 +00:00
.gitreview OpenDev Migration Patch 2019-04-19 19:50:51 +00:00
.travis.yml fix: travis config 2016-08-24 13:28:27 +00:00
MANIFEST.in Fix: wheel support 2016-09-21 17:01:10 +03:00
README.md added: some docs 2016-04-14 13:27:56 +00:00
build-rpm.sh Define fixed python requirement for built rpm 2016-06-10 02:10:55 +00:00
requirements-doc.txt try to add exctension for sphinx 2016-07-08 10:20:20 +00:00
requirements.txt Add empty requirements.txt for Travis-CI 2016-08-03 16:36:57 +03:00
setup.cfg Add first test and update setup and tox to use it 2016-09-14 18:16:08 +03:00
setup.py Add: dynamic import of analyze modules 2016-12-12 20:02:10 -08:00
sphinx-build.sh added: environment file with global parameters for setup and docs 2016-05-28 17:28:25 +00:00
test-requirements.txt Fix: require pytest-runner only for test command 2016-09-21 17:48:18 +03:00
timmy.py added: licenses to files 2016-06-15 07:13:50 +00:00
tox.ini PyPy is not checked at gate. 2017-06-29 18:50:17 +05:30

README.md

============= Specification

OpenStack Ansible-like tool for parallel node operations: two-way data transfer, log collection, remote command execution

  • The tool is based on https://etherpad.openstack.org/p/openstack-diagnostics
  • Should work fine in environments deployed by Fuel versions: 4.x, 5.x, 6.x, 7.0, 8.0, 9.0, 9.1, 9.2
  • Operates non-destructively.
  • Can be launched on any host within admin network, provided the fuel node IP is specified and access to Fuel and other nodes is possible via ssh from the local system.
  • Parallel launch - only on the nodes that are 'online'. Some filters for nodes are also available.
  • Commands (from ./cmds directory) are separated according to roles (detected automatically) by the symlinks. Thus, the command list may depend on release, roles and OS. In addition, there can be some commands that run everywhere. There are also commands that are executed only on one node according to its role, using the first node of this type they encounter.
  • Modular: possible to create a special package that contains only certain required commands.
  • Collects log files from the nodes using filename and timestamp filters
  • Packs collected data
  • Checks are implemented to prevent filesystem overfilling due to log collection, appropriate error shown.
  • Can be imported into other python scripts (ex. https://github.com/f3flight/timmy-customtest) and used as a transport and structure to access node parameters known to Fuel, run commands on nodes, collect outputs, etc. with ease.