├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── Vagrantfile ├── bin ├── console └── setup ├── exe ├── itamae-kondate ├── itamae-kondate-role ├── kondate ├── serverspec-kondate └── serverspec-kondate-role ├── kondate.gemspec ├── lib ├── ext │ ├── itamae │ │ ├── attributes.rb │ │ └── kondate.rb │ └── serverspec │ │ ├── attributes.rb │ │ └── kondate.rb ├── kondate.rb └── kondate │ ├── cli.rb │ ├── config.rb │ ├── error.rb │ ├── hash_ext.rb │ ├── host_plugin │ ├── base.rb │ └── file.rb │ ├── itamae_bootstrap.rb │ ├── property_builder.rb │ ├── property_file.rb │ ├── role_file.rb │ ├── string_util.rb │ ├── templates │ ├── .kondate.conf │ ├── bootstrap.rb │ ├── hosts.yml │ ├── properties │ │ ├── environments │ │ │ ├── .gitkeep │ │ │ └── development.yml │ │ ├── nodes │ │ │ └── .gitkeep │ │ └── roles │ │ │ └── sample.yml │ ├── recipes │ │ ├── middleware │ │ │ └── base │ │ │ │ └── default.rb │ │ └── roles │ │ │ └── .gitkeep │ ├── secrets │ │ └── properties │ │ │ ├── environments │ │ │ └── .gitkeep │ │ │ ├── nodes │ │ │ └── .gitkeep │ │ │ └── roles │ │ │ └── .gitkeep │ └── spec │ │ ├── middleware │ │ ├── .gitkeep │ │ └── base_spec.rb │ │ ├── roles │ │ └── .gitkeep │ │ └── spec_helper.rb │ └── version.rb └── test ├── kondate_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/bin/setup -------------------------------------------------------------------------------- /exe/itamae-kondate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/exe/itamae-kondate -------------------------------------------------------------------------------- /exe/itamae-kondate-role: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/exe/itamae-kondate-role -------------------------------------------------------------------------------- /exe/kondate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/exe/kondate -------------------------------------------------------------------------------- /exe/serverspec-kondate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/exe/serverspec-kondate -------------------------------------------------------------------------------- /exe/serverspec-kondate-role: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/exe/serverspec-kondate-role -------------------------------------------------------------------------------- /kondate.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/kondate.gemspec -------------------------------------------------------------------------------- /lib/ext/itamae/attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/ext/itamae/attributes.rb -------------------------------------------------------------------------------- /lib/ext/itamae/kondate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/ext/itamae/kondate.rb -------------------------------------------------------------------------------- /lib/ext/serverspec/attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/ext/serverspec/attributes.rb -------------------------------------------------------------------------------- /lib/ext/serverspec/kondate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/ext/serverspec/kondate.rb -------------------------------------------------------------------------------- /lib/kondate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate.rb -------------------------------------------------------------------------------- /lib/kondate/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/cli.rb -------------------------------------------------------------------------------- /lib/kondate/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/config.rb -------------------------------------------------------------------------------- /lib/kondate/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/error.rb -------------------------------------------------------------------------------- /lib/kondate/hash_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/hash_ext.rb -------------------------------------------------------------------------------- /lib/kondate/host_plugin/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/host_plugin/base.rb -------------------------------------------------------------------------------- /lib/kondate/host_plugin/file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/host_plugin/file.rb -------------------------------------------------------------------------------- /lib/kondate/itamae_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/itamae_bootstrap.rb -------------------------------------------------------------------------------- /lib/kondate/property_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/property_builder.rb -------------------------------------------------------------------------------- /lib/kondate/property_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/property_file.rb -------------------------------------------------------------------------------- /lib/kondate/role_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/role_file.rb -------------------------------------------------------------------------------- /lib/kondate/string_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/string_util.rb -------------------------------------------------------------------------------- /lib/kondate/templates/.kondate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/templates/.kondate.conf -------------------------------------------------------------------------------- /lib/kondate/templates/bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/templates/bootstrap.rb -------------------------------------------------------------------------------- /lib/kondate/templates/hosts.yml: -------------------------------------------------------------------------------- 1 | localhost: [sample] 2 | -------------------------------------------------------------------------------- /lib/kondate/templates/properties/environments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kondate/templates/properties/environments/development.yml: -------------------------------------------------------------------------------- 1 | global_attributes: 2 | aws_region: ap-northeast-1 3 | -------------------------------------------------------------------------------- /lib/kondate/templates/properties/nodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kondate/templates/properties/roles/sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/templates/properties/roles/sample.yml -------------------------------------------------------------------------------- /lib/kondate/templates/recipes/middleware/base/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/templates/recipes/middleware/base/default.rb -------------------------------------------------------------------------------- /lib/kondate/templates/recipes/roles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kondate/templates/secrets/properties/environments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kondate/templates/secrets/properties/nodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kondate/templates/secrets/properties/roles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kondate/templates/spec/middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kondate/templates/spec/middleware/base_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/templates/spec/middleware/base_spec.rb -------------------------------------------------------------------------------- /lib/kondate/templates/spec/roles/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/kondate/templates/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/lib/kondate/templates/spec/spec_helper.rb -------------------------------------------------------------------------------- /lib/kondate/version.rb: -------------------------------------------------------------------------------- 1 | module Kondate 2 | VERSION = "0.5.0" 3 | end 4 | -------------------------------------------------------------------------------- /test/kondate_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/test/kondate_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonots/kondate/HEAD/test/test_helper.rb --------------------------------------------------------------------------------