├── .github └── FUNDING.yml ├── .gitignore ├── .kitchen.docker.yml ├── .kitchen.yml ├── .rspec ├── .rubocop.yml ├── .travis.yml ├── Berksfile ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── Thorfile ├── Vagrantfile ├── attributes ├── config.rb ├── default.rb ├── user.rb └── web.rb ├── chefignore ├── metadata.rb ├── recipes ├── _repository.rb ├── _services.rb ├── bundle.rb ├── config.rb ├── default.rb ├── mistral.rb ├── user.rb └── web.rb ├── spec ├── recipes │ ├── _repository_spec.rb │ ├── _services_spec.rb │ ├── bundle_spec.rb │ ├── config_spec.rb │ ├── default_spec.rb │ ├── mistral_spec.rb │ ├── user_spec.rb │ └── web_spec.rb └── spec_helper.rb ├── templates └── default │ ├── nginx │ └── st2.conf.erb │ └── st2.conf.erb └── test └── recipes └── default ├── _repository_test.rb ├── _services.rb ├── config_test.rb ├── default_test.rb ├── user_test.rb └── web_test.rb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/.kitchen.docker.yml -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/.travis.yml -------------------------------------------------------------------------------- /Berksfile: -------------------------------------------------------------------------------- 1 | source 'https://supermarket.chef.io' 2 | 3 | metadata 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'kitchen-docker' 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/Rakefile -------------------------------------------------------------------------------- /Thorfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/Thorfile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/Vagrantfile -------------------------------------------------------------------------------- /attributes/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/attributes/config.rb -------------------------------------------------------------------------------- /attributes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/attributes/default.rb -------------------------------------------------------------------------------- /attributes/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/attributes/user.rb -------------------------------------------------------------------------------- /attributes/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/attributes/web.rb -------------------------------------------------------------------------------- /chefignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/chefignore -------------------------------------------------------------------------------- /metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/metadata.rb -------------------------------------------------------------------------------- /recipes/_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/recipes/_repository.rb -------------------------------------------------------------------------------- /recipes/_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/recipes/_services.rb -------------------------------------------------------------------------------- /recipes/bundle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/recipes/bundle.rb -------------------------------------------------------------------------------- /recipes/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/recipes/config.rb -------------------------------------------------------------------------------- /recipes/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/recipes/default.rb -------------------------------------------------------------------------------- /recipes/mistral.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/recipes/mistral.rb -------------------------------------------------------------------------------- /recipes/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/recipes/user.rb -------------------------------------------------------------------------------- /recipes/web.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/recipes/web.rb -------------------------------------------------------------------------------- /spec/recipes/_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/recipes/_repository_spec.rb -------------------------------------------------------------------------------- /spec/recipes/_services_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/recipes/_services_spec.rb -------------------------------------------------------------------------------- /spec/recipes/bundle_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/recipes/bundle_spec.rb -------------------------------------------------------------------------------- /spec/recipes/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/recipes/config_spec.rb -------------------------------------------------------------------------------- /spec/recipes/default_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/recipes/default_spec.rb -------------------------------------------------------------------------------- /spec/recipes/mistral_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/recipes/mistral_spec.rb -------------------------------------------------------------------------------- /spec/recipes/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/recipes/user_spec.rb -------------------------------------------------------------------------------- /spec/recipes/web_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/recipes/web_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /templates/default/nginx/st2.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/templates/default/nginx/st2.conf.erb -------------------------------------------------------------------------------- /templates/default/st2.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/templates/default/st2.conf.erb -------------------------------------------------------------------------------- /test/recipes/default/_repository_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/test/recipes/default/_repository_test.rb -------------------------------------------------------------------------------- /test/recipes/default/_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/test/recipes/default/_services.rb -------------------------------------------------------------------------------- /test/recipes/default/config_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/test/recipes/default/config_test.rb -------------------------------------------------------------------------------- /test/recipes/default/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/test/recipes/default/default_test.rb -------------------------------------------------------------------------------- /test/recipes/default/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/test/recipes/default/user_test.rb -------------------------------------------------------------------------------- /test/recipes/default/web_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/chef-stackstorm/HEAD/test/recipes/default/web_test.rb --------------------------------------------------------------------------------