Merge pull request #15 from 67P/bugfix/specs

Fix the specs
This commit is contained in:
Basti 2019-08-14 18:59:32 +02:00 committed by GitHub
commit e2c00c2afb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 21 deletions

View File

@ -13,12 +13,10 @@ provisioner:
verifier: verifier:
name: inspec name: inspec
root_path: '/opt/verifier' # Needed for the specs to be detected in Docker
chef_license: accept
platforms: platforms:
- name: ubuntu-16.04
driver:
image: dokken/ubuntu-16.04
pid_one_command: /bin/systemd
- name: ubuntu-18.04 - name: ubuntu-18.04
driver: driver:
image: dokken/ubuntu-18.04 image: dokken/ubuntu-18.04
@ -33,8 +31,3 @@ suites:
run_list: run_list:
- recipe[ipfs::default] - recipe[ipfs::default]
attributes: attributes:
- name: cluster
run_list:
- recipe[ipfs::cluster]
- recipe[ipfs::cluster_service]
attributes:

View File

@ -6,17 +6,14 @@ provisioner:
name: chef_zero name: chef_zero
platforms: platforms:
- name: ubuntu-16.04
- name: ubuntu-18.04 - name: ubuntu-18.04
- name: debian-9 - name: debian-9
verifier:
chef_license: accept
suites: suites:
- name: default - name: default
run_list: run_list:
- recipe[ipfs::default] - recipe[ipfs::default]
attributes: attributes:
- name: cluster
run_list:
- recipe[ipfs::cluster]
- recipe[ipfs::cluster_service]
attributes:

View File

@ -20,7 +20,6 @@ services: docker
env: env:
matrix: matrix:
- INSTANCE=default-debian-9 - INSTANCE=default-debian-9
- INSTANCE=default-ubuntu-1604
- INSTANCE=default-ubuntu-1804 - INSTANCE=default-ubuntu-1804
before_script: before_script:
@ -30,7 +29,7 @@ before_script:
- cookstyle --version - cookstyle --version
- foodcritic --version - foodcritic --version
script: CHEF_LICENSE=accept-no-persist KITCHEN_LOCAL_YAML=.kitchen.dokken.yml CHEF_VERSION=13.10.4 kitchen verify ${INSTANCE} script: CHEF_LICENSE=accept-no-persist KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen test ${INSTANCE}
matrix: matrix:
include: include:

View File

@ -45,10 +45,7 @@ describe 'IPFS' do
{ {
'Swarm.AddrFilters' => addr_filters.rstrip, 'Swarm.AddrFilters' => addr_filters.rstrip,
'Swarm.DisableBandwidthMetrics' => true, 'Gateway.Writable' => true,
'Swarm.DisableRelay' => true,
'Swarm.ConnMgr.HighWater' => 10,
'Swarm.ConnMgr.LowWater' => 1,
}.each do |k, v| }.each do |k, v|
describe command("IPFS_PATH=/home/ipfs/.ipfs ipfs config '#{k}'") do describe command("IPFS_PATH=/home/ipfs/.ipfs ipfs config '#{k}'") do
let(:sudo_options) { '-u ipfs -i' } let(:sudo_options) { '-u ipfs -i' }