Skip to content

Releases: fboender/ansible-cmdb

v1.12

15 Feb 17:07
Compare
Choose a tag to compare

This release includes the following changes:

  • Bugfix: Don't parse hidden files in fact output dirs.
  • Bugfix: Various fixes in html_fancy template that prevent output from being generated if certain facts are missing.
  • Bugfix: Improved error handling to prevent ansible-cmdb from stopping on a single invalid host.
  • Improved error reporting
  • Ansible local facts (from /etc/ansible/facts.d on hosts) is now shown in the Host details overview.
  • Support undocumented extended YAML vars in hosts files.
  • txt_table: Show MemFree and MemUsed columns. (by Kurt Davis)
  • txt_table: Properly align table columns if the values are less wide than the title.

v1.11

12 Jan 07:35
Compare
Choose a tag to compare

This release includes the following bugfixes and feature improvements:

  • Source package improvements in man page handling (Alex Barton)
  • html_fancy template now supports OpenBSD facts.
  • html_fancy template now supports Windows (2008) facts.
  • html_fancy template now shows a link icon instead of a star for the search box URL.
  • Improved error reporting and debugging mode (-d).

v1.10

21 Dec 09:39
Compare
Choose a tag to compare

This is a bugfix and feature release:

  • html_fancy: Headers are now links
  • html_fancy: Search box can now be linked to using the ?search= param, which will automatically filter the results when the page is loaded.
  • html_fancy: A star with a link now appears next to the search box for easy copy-pasting of the search box URL.
  • UTF-8 / unicode bugfixes.

v1.9

05 Dec 15:05
Compare
Choose a tag to compare

This is a feature release that includes the following changes:

  • Always output UTF-8.
  • Added the 'json' template, which dumps the entire inventory including variables and groups in JSON format.
  • Included a manual page in the packages.
  • The -t/--template switch can now point to an actual filename, and no longer requires the .tpl extension to be stripped.
  • html_fancy: Fixed a bug where the search field was not properly focussed.
  • html_fancy: Use vcpus for cores + hyperthreading count (Rowin Andruscavage)
  • html_fancy: New cpu, memory, swap columns and improved sorting (Rowin Andruscavage)
  • html_fancy: Show a hosts groups in the detailed view
  • html_fancy: Move and disable/enable some default columns.
  • html_fancy: Network overview table for host details.

v1.8

10 Nov 19:03
Compare
Choose a tag to compare

This is a bugfix release:

  • Fixed a bug in Dynamic Inventory parsing
  • Spelling mistakes in README fixed (by Sebastian Gumprich)

v1.7

08 Nov 09:09
Compare
Choose a tag to compare
  • Added a -c / --columns option that allows users to specify the columns to show. Must be supported by template.
  • Html_fancy template now has a kernel column. (by Rowin Andruscavage)
  • Html_fancy template now has a timestamp column which displays when facts where gathered. (by Rowin Andruscavage)
  • Bugfix: Search box in html_fancy template was not properly focused automatically.
  • Version is now properly displayed with --version
  • Development related: Refactoring of ansible-cmdb into a module and a thin commandline wrapper.

v1.6

03 Oct 19:31
Compare
Choose a tag to compare

This is a feature release, which includes the following changes:

  • The -i switch now supports reading dynamic inventory scripts.
  • host_vars directory now supported (by Malcolm Mallardi)
  • Support for multiple inventory sources as per https://docs.ansible.com/ansible/intro_dynamic_inventory.html#using-multiple-inventory-sources.
  • Improved error handling prevents ansible-cmdb from stopping if it encounters non-critical errors (malformed host definitions, etc).
  • Improved error reporting.
  • html_fancy template column headers are now visually identifiable as being sortable.

v1.5

21 Sep 08:52
Compare
Choose a tag to compare

This is a feature release which includes the following improvements:

  • html_fancy overview page can now be viewed locally (through file:///) without needing to specify the -p local_js=1 flag to it. It still fetches resources from the internet, so you still require an internet connection. If you do not want to fetch resources from the internet, use the -p local_js=1 flag.
  • A new Material design for the html_fancy template.

v1.4

01 Sep 07:06
Compare
Choose a tag to compare

The following features have been added and bugs have been fixed:

  • Support for host inventory patterns (e.g. foo[01:04].bar.com)
  • Support for 'vars' and 'children' groups.
  • Support passing a directory to the -i param, in which case all the files in
    that directory are interpreted as one big hosts file.
  • Support for the use of local jquery files instead of via a CDN. Allows you to
    view the hosts overview in your browser using file://. See README.md for info
    on how to enable it (hint: ansible-cmdb -p local_js=1).
  • Add -f/--fact-caching flag for compatibility with fact_caching=jsonfile fact
    dirs (Rowin Andruscavage).
  • The search box in the html_fancy template is now automatically focussed.
  • Show memory to one decimal to avoid "0g" in low-mem hosts.
  • Templates can now receive parameters via the -p option.
  • Strip ports from hostnames scanned from the host inventory file.
  • Various fixes in the documentation.
  • Fixes for Solaris output (memory and disk).

I would like to extend my gratitude to the following contributors:

  • Sebastian Gumprich
  • Rowin Andruscavage
  • Cory Wagner
  • Jeff Palmer
  • Sven Schliesing

v1.3

16 Aug 11:29
Compare
Choose a tag to compare

This is a maintenance release that fixes the following issues:

  • Generated RPM now installs on operating systems with strict Yum (Fedora 22, Amazon AMI).
  • The default templates (html_fancy, txt_table) no longer crash on missing information.
  • Python3 compatibility. (by Sven Schliesing).
  • Disk total and available columns have been deprecated in favour of adding the information to the Disk Usage columns. (by Sven Schliesing).
  • No longer ignore disks smaller than 1Gb, but still ignore disks of total size 0.
  • Minor fixes in the documentation (by Sebastian Gumprich, et al).
  • Better error reporting.