36 lines
960 B
YAML
36 lines
960 B
YAML
---
|
|
driver:
|
|
name: vagrant
|
|
## The forwarded_port port feature lets you connect to ports on the VM guest via
|
|
## localhost on the host.
|
|
## see also: https://www.vagrantup.com/docs/networking/forwarded_ports
|
|
network:
|
|
- ["forwarded_port", { guest: 4444, host: 4444 }]
|
|
|
|
provisioner:
|
|
name: chef_zero
|
|
# You may wish to disable always updating cookbooks in CI or other testing environments.
|
|
# For example:
|
|
# always_update_cookbooks: <%= !ENV['CI'] %>
|
|
always_update_cookbooks: true
|
|
|
|
## product_name and product_version specifies a specific Chef product and version to install.
|
|
## see the Chef documentation for more details: https://docs.chef.io/workstation/config_yml_kitchen/
|
|
# product_name: chef
|
|
# product_version: 16
|
|
|
|
verifier:
|
|
name: inspec
|
|
|
|
platforms:
|
|
- name: ubuntu-20.04
|
|
|
|
suites:
|
|
- name: rskj
|
|
run_list:
|
|
- recipe[kosmos_rsk::rskj]
|
|
verifier:
|
|
inspec_tests:
|
|
- test/integration/rskj
|
|
attributes:
|