Description
Simple and lightweight configuration management tool inspired by Chef.
Concept
* Chef-like DSL (but not compatible with Chef)
* Simpler and lighter weight than Chef
* Only recipes
* Idempotent
itamae alternatives and similar gems
Based on the "DevOps Tools" category.
Alternatively, view itamae alternatives based on common mentions on social networks and blogs.
-
Chef
Chef Infra, a powerful automation platform that transforms infrastructure into code automating how infrastructure is configured, deployed and managed across any environment, at any scale -
BOSH
Cloud Foundry BOSH is an open source tool chain for release engineering, deployment and lifecycle management of large scale distributed services. -
Request-log-analyzer
Create reports based on your log files. Supports Rails, Apache, MySQL, Delayed::Job, and other formats. -
Rubber
A capistrano/rails plugin that makes it easy to deploy/manage/scale to various service providers, including EC2, DigitalOcean, vSphere, and bare metal servers. -
Einhorn
DISCONTINUED. Einhorn will open one or more shared sockets and run multiple copies of your process. You can seamlessly reload your code, dynamically reconfigure Einhorn, and more. -
Blender
DISCONTINUED. A modular system orchestration framework with pluggable driver and host discovery. -
Kanrisuru
Kanrisuru helps you manage your remote servers with objected oriented ruby. Results come back as structured data, parsed, prepared and ready for you to easily use in your applications.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of itamae or a related project?
Popular Comparisons
README
Simple and lightweight configuration management tool inspired by Chef.
Concept
- Chef-like DSL (but not compatible with Chef)
- Simpler and lighter weight than Chef
- Only recipes
- Idempotent
Installation
$ gem install itamae
Getting Started
Create a recipe file as recipe.rb
:
package 'nginx' do
action :install
end
service 'nginx' do
action [:enable, :start]
end
And then execute itamae
command to apply a recipe to a local machine.
$ itamae local recipe.rb
INFO : Starting Itamae...
INFO : Recipe: /home/user/recipe.rb
INFO : package[nginx]
INFO : action: install
INFO : installed will change from 'false' to 'true'
INFO : service[nginx]
INFO : action: enable
INFO : action: start
Or you can apply a recipe to a remote machine by itamae ssh
.
$ itamae ssh --host host001.example.jp recipe.rb
You can also apply a recipe to Vagrant VM by itamae ssh --vagrant
.
$ itamae ssh --vagrant --host vm_name recipe.rb
You can find further information to use Itamae on Itamae Wiki.
Enjoy!
Documentation
https://github.com/itamae-kitchen/itamae/wiki
Run tests
Requirements: Vagrant
$ bundle exec rake spec
Get Involved
Presentations / Articles
in Japanese
- Itamae - Infra as Code 現状確認会
- クックパッドのサーバプロビジョニング事情 - クックパッド開発者ブログ
- Itamaeが構成管理を仕込みます! ~新進気鋭の国産・構成管理ツール~:連載|gihyo.jp … 技術評論社
Contributing
If you have a problem, please create an issue or a pull request.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request