├── Gemfile ├── README.md ├── Vagrantfile ├── cookbooks ├── project_hoge │ ├── deploy.rb │ ├── nginx.rb │ └── packages.rb └── td-agent │ ├── attribute.rb │ ├── install.rb │ └── templates │ ├── repo.erb │ └── td-agent.conf.erb ├── entrypoint.rb ├── nodes └── vm_app.json ├── roles ├── app.rb └── base.rb └── vagrant_provision.sh /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/Vagrantfile -------------------------------------------------------------------------------- /cookbooks/project_hoge/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/cookbooks/project_hoge/deploy.rb -------------------------------------------------------------------------------- /cookbooks/project_hoge/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/cookbooks/project_hoge/nginx.rb -------------------------------------------------------------------------------- /cookbooks/project_hoge/packages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/cookbooks/project_hoge/packages.rb -------------------------------------------------------------------------------- /cookbooks/td-agent/attribute.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/cookbooks/td-agent/attribute.rb -------------------------------------------------------------------------------- /cookbooks/td-agent/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/cookbooks/td-agent/install.rb -------------------------------------------------------------------------------- /cookbooks/td-agent/templates/repo.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/cookbooks/td-agent/templates/repo.erb -------------------------------------------------------------------------------- /cookbooks/td-agent/templates/td-agent.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/cookbooks/td-agent/templates/td-agent.conf.erb -------------------------------------------------------------------------------- /entrypoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/entrypoint.rb -------------------------------------------------------------------------------- /nodes/vm_app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/nodes/vm_app.json -------------------------------------------------------------------------------- /roles/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/roles/app.rb -------------------------------------------------------------------------------- /roles/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/roles/base.rb -------------------------------------------------------------------------------- /vagrant_provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toritori0318/itamae-sample-project/HEAD/vagrant_provision.sh --------------------------------------------------------------------------------