Hi.
Sorry for another noob question.
I started creating some tests with Test Kitchen and I’m using the following Kitchen configuration:
$ cat .kitchen.yml
---
driver:
name: vagrant
provisioner:
name: chef_zero
# Uncomment the following verifier to leverage Inspec instead of Busser (the
# default verifier)
# verifier:
# name: inspec
platforms:
- name: debian-8.2
suites:
- name: default
run_list:
- recipe[frontends::default]
attributes:
Tests are very slow because it installs Chef Client every time, so I know I can use require_chef_omnibus: false
to avoid to install it every time.
Kitchen is now using the box from https://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_debian-8.2_chef-provisionerless.box.
But how I can create a custom box with Chef Client already installed? I tried to look for some guides or documentation but I found nothing useful.
Could you help me please?