mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
Merge pull request #5501 from inspec/cw/fix-kitchen
Fixes for the integration-resources pipeline
This commit is contained in:
commit
37d5b810ed
4 changed files with 237 additions and 17 deletions
51
.expeditor/buildkite/bk_linux_exec.sh
Executable file
51
.expeditor/buildkite/bk_linux_exec.sh
Executable file
|
@ -0,0 +1,51 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Enable IPv6 in docker
|
||||
echo "--- Enabling ipv6 on docker"
|
||||
sudo systemctl stop docker
|
||||
dockerd_config="/etc/docker/daemon.json"
|
||||
sudo echo "$(jq '. + {"ipv6": true, "fixed-cidr-v6": "2001:2019:6002::/80", "ip-forward": false}' $dockerd_config)" > $dockerd_config
|
||||
sudo systemctl start docker
|
||||
|
||||
# Install C and C++
|
||||
echo "--- Installing package deps"
|
||||
sudo yum install -y gcc gcc-c++ openssl-devel readline-devel zlib-devel
|
||||
|
||||
# Install ASDF
|
||||
echo "--- Installing asdf to ${HOME}/.asdf"
|
||||
git clone https://github.com/asdf-vm/asdf.git "${HOME}/.asdf"
|
||||
cd "${HOME}/.asdf"; git checkout "$(git describe --abbrev=0 --tags)"; cd -
|
||||
. "${HOME}/.asdf/asdf.sh"
|
||||
|
||||
# Install Ruby
|
||||
ruby_version=$(sed -n '/"ruby"/{s/.*version: "//;s/"//;p;}' omnibus_overrides.rb)
|
||||
echo "--- Installing Ruby $ruby_version"
|
||||
asdf plugin add ruby
|
||||
asdf install ruby $ruby_version
|
||||
asdf global ruby $ruby_version
|
||||
|
||||
# Set Environment Variables
|
||||
export BUNDLE_GEMFILE=$PWD/Gemfile
|
||||
export FORCE_FFI_YAJL=ext
|
||||
export CHEF_LICENSE="accept-silent"
|
||||
|
||||
# Update Gems
|
||||
echo "--- Installing Gems"
|
||||
echo 'gem: --no-document' >> ~/.gemrc
|
||||
sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
|
||||
bundle install --jobs=3 --retry=3 --path=../vendor/bundle
|
||||
|
||||
echo "--- Config information"
|
||||
|
||||
echo "!!!! RUBY VERSION !!!!"
|
||||
ruby --version
|
||||
echo "!!!! BUNDLER LOCATION !!!!"
|
||||
which bundle
|
||||
echo "!!!! BUNDLER VERSION !!!!"
|
||||
bundle -v
|
||||
echo "!!!! DOCKER VERSION !!!!"
|
||||
docker version
|
||||
echo "!!!! DOCKER STATUS !!!!"
|
||||
sudo service docker status
|
||||
|
||||
echo "+++ Running tests"
|
|
@ -8,14 +8,175 @@ expeditor:
|
|||
limit: 1
|
||||
|
||||
steps:
|
||||
- label: Resource-Platform Tests
|
||||
command:
|
||||
- RAKE_TASK=test:kitchen /workdir/.expeditor/buildkite/verify.sh
|
||||
- label: "Kitchen: resources-amazonlinux-2"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-amazonlinux-2
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
docker:
|
||||
environment:
|
||||
- CONCURRENCY: 3
|
||||
- DOCKER: 1
|
||||
- KITCHEN_YAML: kitchen.dokken.yml
|
||||
image: ruby:2.7
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-centos-7"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-centos-7
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-centos-8"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-centos-8
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-debian-9"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-debian-9
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
- label: "Kitchen: resources-debian-10"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-debian-10
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-fedora-latest"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-fedora-latest
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-oraclelinux-7"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-oraclelinux-7
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
- label: "Kitchen: resources-oraclelinux-8"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-oraclelinux-8
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-opensuse-leap"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-opensuse-leap
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
||||
- label: "Kitchen: resources-ubuntu-1804"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-ubuntu-1804
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
- label: "Kitchen: resources-ubuntu-2004"
|
||||
commands:
|
||||
- .expeditor/buildkite/bk_linux_exec.sh
|
||||
- . /var/lib/buildkite-agent/.asdf/asdf.sh
|
||||
- bundle exec kitchen test resources-ubuntu-2004
|
||||
artifact_paths:
|
||||
- $PWD/.kitchen/logs/kitchen.log
|
||||
env:
|
||||
KITCHEN_YAML: kitchen.dokken.yml
|
||||
DOCKER: 1
|
||||
expeditor:
|
||||
executor:
|
||||
linux:
|
||||
privileged: true
|
||||
single-use: true
|
||||
|
|
|
@ -14,12 +14,15 @@ if platform_family?("rhel", "debian", "fedora", "amazon", "suse")
|
|||
execute "iptables -A INPUT -j derby-cognos-web"
|
||||
execute "iptables -A derby-cognos-web -p tcp -m tcp --dport 80 "\
|
||||
'-m comment --comment "derby-cognos-web" -j ACCEPT'
|
||||
# IPv6
|
||||
execute "ip6tables -A INPUT -i eth0 -p tcp -m tcp "\
|
||||
"--dport 80 -m state --state NEW -m comment "\
|
||||
'--comment "http v6 on 80" -j ACCEPT'
|
||||
execute "ip6tables -N derby-cognos-web-v6"
|
||||
execute "ip6tables -A INPUT -j derby-cognos-web-v6"
|
||||
execute "ip6tables -A derby-cognos-web-v6 -p tcp -m tcp --dport 80 "\
|
||||
'-m comment --comment "derby-cognos-web-v6" -j ACCEPT'
|
||||
|
||||
if ENV['IPV6']
|
||||
# IPv6
|
||||
execute "ip6tables -A INPUT -i eth0 -p tcp -m tcp "\
|
||||
"--dport 80 -m state --state NEW -m comment "\
|
||||
'--comment "http v6 on 80" -j ACCEPT'
|
||||
execute "ip6tables -N derby-cognos-web-v6"
|
||||
execute "ip6tables -A INPUT -j derby-cognos-web-v6"
|
||||
execute "ip6tables -A derby-cognos-web-v6 -p tcp -m tcp --dport 80 "\
|
||||
'-m comment --comment "derby-cognos-web-v6" -j ACCEPT'
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
unless ENV['IPV6']
|
||||
$stderr.puts "\033[1;33mTODO: Not running #{__FILE__.split("/").last} because we are running without IPv6\033[0m"
|
||||
return
|
||||
end
|
||||
|
||||
case os[:family]
|
||||
when 'ubuntu', 'fedora', 'debian', 'suse'
|
||||
describe ip6tables do
|
||||
|
|
Loading…
Reference in a new issue