cookbook 'chef_client_updater', '= 1.1.0'
chef_client_updater
(62) Versions
1.1.0
-
-
3.12.3
-
3.12.2
-
3.12.1
-
3.12.0
-
3.11.1
-
3.11.0
-
3.10.1
-
3.10.0
-
3.9.0
-
3.8.6
-
3.8.5
-
3.8.4
-
3.8.3
-
3.8.2
-
3.8.1
-
3.8.0
-
3.7.3
-
3.7.2
-
3.7.1
-
3.7.0
-
3.6.0
-
3.5.3
-
3.5.2
-
3.5.1
-
3.5.0
-
3.4.2
-
3.4.1
-
3.4.0
-
3.3.5
-
3.3.4
-
3.3.3
-
3.3.2
-
3.3.1
-
3.3.0
-
3.2.9
-
3.2.8
-
3.2.7
-
3.2.6
-
3.2.5
-
3.2.4
-
3.2.3
-
3.2.2
-
3.2.1
-
3.2.0
-
3.1.3
-
3.1.2
-
3.1.1
-
3.1.0
-
3.0.4
-
3.0.3
-
3.0.2
-
3.0.1
-
3.0.0
-
2.0.3
-
2.0.2
-
2.0.1
-
2.0.0
-
1.1.1
-
1.1.0
-
1.0.2
-
1.0.1
-
1.0.0
Follow58
- 3.12.3
- 3.12.2
- 3.12.1
- 3.12.0
- 3.11.1
- 3.11.0
- 3.10.1
- 3.10.0
- 3.9.0
- 3.8.6
- 3.8.5
- 3.8.4
- 3.8.3
- 3.8.2
- 3.8.1
- 3.8.0
- 3.7.3
- 3.7.2
- 3.7.1
- 3.7.0
- 3.6.0
- 3.5.3
- 3.5.2
- 3.5.1
- 3.5.0
- 3.4.2
- 3.4.1
- 3.4.0
- 3.3.5
- 3.3.4
- 3.3.3
- 3.3.2
- 3.3.1
- 3.3.0
- 3.2.9
- 3.2.8
- 3.2.7
- 3.2.6
- 3.2.5
- 3.2.4
- 3.2.3
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.3
- 3.1.2
- 3.1.1
- 3.1.0
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.1.1
- 1.1.0
- 1.0.2
- 1.0.1
- 1.0.0
Upgrades chef-client to specified releases
cookbook 'chef_client_updater', '= 1.1.0', :supermarket
knife supermarket install chef_client_updater
knife supermarket download chef_client_updater
chef_client_updater
This cookbook updates the chef-client
Requirements
Platforms
- All platforms with a chef-client package on downloads.chef.io
Chef
- Chef 12.1+
Cookbooks
- compat_resource
Usage
This cookbook provides both a custom resource and a default recipe. The default recipe simply uses the custom resource with a set of attributes. You can add chef_client_updater::default to your run list or use the custom resource in a wrapper cookbook.
Init System Caveats
When Chef runs as a service under a system init daemon such as Sys-V or systemd each chef run forks off from the main chef-client process being managed by the init system. For a chef-client upgrade to occur the running chef-client as well as the parent process must be killed, and a new chef-client must start using the updated binaries. This cookbook handles killing the chef-client, but your init system must properly handle starting the service back up. For systemd and upstart this can be handled via configuration, and chef-client cookbook 8.1.1 or later handles this by default. This functionality is not available in sys-v (RHEL 6, Debian 7, and others), so you will need to employ a secondary process such as a monitoring system to start the chef-client service.
Resources
chef_client_updater
Installs the mixlib-install/mixlib-install gems and upgrades the chef-client.
properties
-
channel
- The chef channel you fetch the chef client from.stable
contains all officially released chef-client builds where ascurrent
contains unreleased builds. Default:stable
-
prevent_downgrade
- Don't allow this cookbook to downgrade the chef-client version. Default: true -
version
- The version of the chef-client to install. Default :latest -
post_install_action
- After installing the chef-client what should we do.exec
to exec the new client orkill
to kill the client and rely on the init system to start up the new version. Default:exec
-
exec_command
- The chef-client command. default: $PROGRAM_NAME.split(' ').first -
exec_args
- An array of arguments to exec the chef-client with. default: ARGV -
download_url_override
- The direct URL for the chef-client package. -
checksum
- The SHA-256 checksum of the chef-client package from the direct URL.
examples
chef_client_updater 'Install latest'
chef_client_updater 'Install 12.13.36 and kill' do version '12.13.36' post_install_action 'kill' end
License & Authors
- Author: Tim Smith (tsmith@chef.io)
Copyright:: 2016-2017, Chef Software, Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
chef_client_updater Cookbook CHANGELOG
This file is used to list changes made in each version of the chef_client_updater cookbook.
1.1.0 (2017-05-10)
- Add support for download URL overrides via new properties on the resource and attributes for the default recipe. This requires mixlib-install 3.2.1, which we now ensure we install in the updater resource.
- Update the default post_install action in the recipe to match the resource (exec).
- Remove usage of class_eval in the resource since we use compat_resource and class_eval causes issues with some later Chef 12 releases.
- Fix the solaris platform name in the metadata.rb.
- Remove disabling FC016 and FC023 Foodcritic rules as these no longer alert.
- Avoid infinite loops if trying to install the latest chef-client version from any channel.
- Add a true test recipe and remove unused inspec tests
- Add debug logging of the current vs. desired versions to help troubleshooting
- Added a blurb in the readme outlining init system issues surrounding kill and the chef-client starting back up
1.0.2 (2017-04-07)
- Fix Chef 13 compatibility by using Kernel.exec not exec
1.0.1 (2017-04-07)
- point the URLs at the new project repo
- Add ChefSpec matcher
1.0.0
- Initial release of chef_client_updater
Collaborator Number Metric
1.1.0 passed this metric
Contributing File Metric
1.1.0 passed this metric
Foodcritic Metric
1.1.0 passed this metric
License Metric
1.1.0 passed this metric
No Binaries Metric
1.1.0 passed this metric
Testing File Metric
1.1.0 passed this metric
Version Tag Metric
1.1.0 passed this metric
1.1.0 passed this metric
1.1.0 passed this metric
Foodcritic Metric
1.1.0 passed this metric
License Metric
1.1.0 passed this metric
No Binaries Metric
1.1.0 passed this metric
Testing File Metric
1.1.0 passed this metric
Version Tag Metric
1.1.0 passed this metric
1.1.0 passed this metric
1.1.0 passed this metric
No Binaries Metric
1.1.0 passed this metric
Testing File Metric
1.1.0 passed this metric
Version Tag Metric
1.1.0 passed this metric
1.1.0 passed this metric
1.1.0 passed this metric
Version Tag Metric
1.1.0 passed this metric
1.1.0 passed this metric