No commit activity in last 3 years
No release in over 3 years
A knife plugin to see cookbooks that can be deleted
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 12.11, < 16
 Project Readme

Gem Version Gem Dowloads Travis branch Code Climate Gemnasium

Knife Chef Inventory

The main purpose of this knife plugin is to find objects that are not being used on the chef server so they can be cleaned up

Installation

Installation is easy just as any other knife plugin, just install with the gem command

# You can install to your chefdk environment
chef gem install knife-chef-inventory

# Or to a regular ruby environment
gem install knife-chef-inventory

Usage

Everything suppose to be organized in an easy to navigate way. Everything is nested under knife inventory and the commands should be self documenting. Below are some simple examples

knife inventory

** INVENTORY COMMANDS **
knife inventory chef_client
knife inventory cookbook

Cookbooks

You can look into a single cookbook below to see what versions are active. Then once you see which ones are active you can dig in by specifying a version number to drill into.

# Looking into the usage of the apache2 cookbook
knife inventory cookbook apache2
Total Nodes using Cookbook: 3
3.1.0 is used by 1 hosts
3.2.1 is used by 1 hosts
3.2.2 is used by 1 hosts
# Looking into the usage of the apache2 cookbook for version 3.1.0
knife inventory cookbook apache2 3.1.0
Cookbook Versions being used for apache2
server1.domain.com - 12312 Minutes
# We can also do wilcard to look at lets say version 3.2.x
knife inventory cookbook apache2 3.2.x
Cookbook Versions being used for apache2
server2.domain.com - 13 Minutes
server3.domain.com - 13 Minutes
# We can also pass in the "--env-constraints" option to look at any environment constaints that are specified
knife inventory cookbook apache2 --env-constraints
Total Nodes using Cookbook: 3
3.1.0 is used by 1 hosts
3.2.1 is used by 1 hosts
3.2.2 is used by 1 hosts
Environment Version Constraints for apache2
staging - ~> 3.2
production - = 3.2.1

Chef Clients

You can also index chef client versions to see what is being used over all of your infrastructure

# You can get a list of different client versions
knife inventory chef_client
11.6.8 is used by 1 hosts
11.7.0 is used by 1 hosts
12.6.0 is used by 20 hosts
12.7.2 is used by 14 hosts
12.8.1 is used by 9 hosts
12.9.38 is used by 2 hosts
12.9.41 is used by 11 hosts
# You can then drill into each node with wildcards to see what hosts are using each version
knife inventory chef_client 11.*
Client Versions being used
server2.domain.com - 13 Minutes
server3.domain.com - 13 Minutes

TODO

There are still several things that need to be included, for example environments, clients, users, nodes, and I guess roles.