Kirill Shirinkin

Results 31 issues of Kirill Shirinkin

When I tried to use `machine_image` with vagrant driver, after successful converging I got `Chef::Provisioning::VagrantDriver::Driver does not implement create_image` error. So I suppose it's impossible to build an actual vagrant...

I've pulled master branch and run: `AWS_TEST_DRIVER=aws chef exec bundle exec rspec spec`. Bunch of specs failed. ``` Finished in 9 minutes 4 seconds (files took 46.39 seconds to load)...

Type: Bug
Triage: Confirmed
Triage: Needs Information

Let's say I've decided to describe my infrastructure completely using chef-provisioning. I wrote a recipe like this: ``` ruby 1.upto(3) do |i| machine "my-web-app-#{i}" do recipe "my-web-app::default" machine_options { bootstrap_options:...

Type: Enhancement
Triage: Confirmed

Let's say I have ``` ruby machine_image "web" do end machine_image "db" do end ``` Then would be awesome to do: ``` ruby machine_batch do machine_images "*" action :destroy end...

Type: Enhancement
Triage: Confirmed

afaik machine_batch works only with machine resource. Any plans to add it for machine_image? What is required to do so?

Type: Enhancement
Triage: Confirmed

kitchen-metal plugin is dead. What is the alternative? How do I write tests for chef-provisioning recipes?

Type: Enhancement
Triage: Confirmed

As far as I can see logs of chef-client running on `machine` resources is not shown inside chef-client run of provisioner node. Is there a configuration option for this or...

I wrote a great big article describing problems of infrastructure automating, and comparing chef-provisioning with terraform, cloudformation and alike. It's mostly about how awesome chef-provisioning is compared with other tools....

As far as I can see, machine_image is not recreated only if there a data bag item inside machine_image data bag. But if I upgrade my cookbooks that are used...

I gave it a try on Rails 6.1 RC and figured that due to this change: https://github.com/rails/rails/commit/437ab2031ea4660cb4e57dea3d912aca37363c7e, routing-filter gem won't work anymore. Sadly I don't have capacity to submit a...