All Projects → itamae-kitchen → Itamae

itamae-kitchen / Itamae

Licence: mit
Configuration management tool inspired by Chef, but simpler and lightweight. Formerly known as Lightchef.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Itamae

devopsish.com
DevOps, Cloud Native, Hybrid Cloud, Open Source, industry news, culture, and the ‘ish between.
Stars: ✭ 33 (-96.75%)
Mutual labels:  infrastructure, infrastructure-as-code
terraform-aws-concourse
Terraform Module for a distributed concourse cluster on AWS
Stars: ✭ 12 (-98.82%)
Mutual labels:  infrastructure, infrastructure-as-code
netris-operator
The Kubernetes Operator for Netris
Stars: ✭ 28 (-97.24%)
Mutual labels:  infrastructure, infrastructure-as-code
Pulumi Aws
An Amazon Web Services (AWS) Pulumi resource package, providing multi-language access to AWS
Stars: ✭ 169 (-83.33%)
Mutual labels:  infrastructure-as-code, infrastructure
terraform-vsphere-single-vm
Deploy single vSphere VM with Terraform - template.
Stars: ✭ 21 (-97.93%)
Mutual labels:  infrastructure, infrastructure-as-code
Fogg
Manage Infrastructure as Code with less pain.
Stars: ✭ 181 (-82.15%)
Mutual labels:  infrastructure-as-code, infrastructure
terraform-templates
Terraform templates, examples, etc.
Stars: ✭ 16 (-98.42%)
Mutual labels:  infrastructure, infrastructure-as-code
Terrascan
Detect compliance and security violations across Infrastructure as Code to mitigate risk before provisioning cloud native infrastructure.
Stars: ✭ 2,687 (+164.99%)
Mutual labels:  infrastructure-as-code, infrastructure
POSH-HPEOneView
PowerShell language bindings library for HPE OneView.
Stars: ✭ 116 (-88.56%)
Mutual labels:  infrastructure, infrastructure-as-code
stein
A linter for config files with a customizable rule set
Stars: ✭ 92 (-90.93%)
Mutual labels:  infrastructure, infrastructure-as-code
Terrible
An Ansible playbook that apply the principle of the Infrastructure as Code on a QEMU/KVM environment.
Stars: ✭ 161 (-84.12%)
Mutual labels:  infrastructure-as-code, infrastructure
Red-Baron
Automate creating resilient, disposable, secure and agile infrastructure for Red Teams
Stars: ✭ 326 (-67.85%)
Mutual labels:  infrastructure, infrastructure-as-code
Terraform Aws Landing Zone
Terraform Module for AWS Landing Zone
Stars: ✭ 142 (-86%)
Mutual labels:  infrastructure-as-code, infrastructure
Pytest Testinfra
With Testinfra you can write unit tests in Python to test actual state of your servers configured by management tools like Salt, Ansible, Puppet, Chef and so on.
Stars: ✭ 1,987 (+95.96%)
Mutual labels:  chef, infrastructure-as-code
Terraform With Circleci Example
This is an example of automatic deployments of your infrastructure using terraform and CircleCI 2.0 workflows
Stars: ✭ 142 (-86%)
Mutual labels:  infrastructure-as-code, infrastructure
chef
Chef configuration management repo for configuring & maintaining the OpenStreetMap servers.
Stars: ✭ 94 (-90.73%)
Mutual labels:  infrastructure, chef
Cintodeutilidadesdocker
My Docker templates repository 🐳 ☁️ 🐳
Stars: ✭ 74 (-92.7%)
Mutual labels:  infrastructure-as-code, infrastructure
Toc
A Table of Contents of all Gruntwork Code
Stars: ✭ 111 (-89.05%)
Mutual labels:  infrastructure-as-code, infrastructure
terraform-pb
Programmatic management of infrastructure using Terraform and Protocol Buffers
Stars: ✭ 18 (-98.22%)
Mutual labels:  infrastructure, infrastructure-as-code
c3
𝗖𝟯 provides compliant AWS CDK components to various security standards.
Stars: ✭ 24 (-97.63%)
Mutual labels:  infrastructure, infrastructure-as-code

Gem Version Code Climate Build Status Slack

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 excute 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

Contributing

If you have a problem, please create an issue or a pull request.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].