123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206 |
- ---
- <% vagrant = system('gem list -i kitchen-vagrant 2>/dev/null >/dev/null') %>
- <% version = '2018.3.3' %>
- <% platformsfile = ENV['SALT_KITCHEN_PLATFORMS'] || '.kitchen/platforms.yml' %>
- <% driverfile = ENV['SALT_KITCHEN_DRIVER'] || '.kitchen/driver.yml' %>
- <% verifierfile = ENV['SALT_KITCHEN_VERIFIER'] || '.kitchen/verifier.yml' %>
- <% golden_images_branch = ENV['GOLDEN_IMAGES_CI_BRANCH'] || 'latest' %>
- <% if File.exists?(driverfile) %>
- <%= ERB.new(File.read(driverfile)).result %>
- <% else %>
- driver:
- name: docker
- use_sudo: false
- hostname: salt
- privileged: true
- username: kitchen
- volume:
- - /var/run/docker.sock:/docker.sock
- cap_add:
- - sys_admin
- disable_upstart: false
- provision_command:
- - systemctl enable sshd
- - echo 'L /run/docker.sock - - - - /docker.sock' > /etc/tmpfiles.d/docker.conf
- transport:
- name: rsync
- <% end %>
- provisioner:
- name: salt_solo
- salt_version: false
- salt_install: false
- run_salt_call: false
- install_after_init_environment: false
- log_level: info
- sudo: true
- require_chef: false
- retry_on_exit_code:
- - 139
- max_retries: 2
- salt_copy_filter:
- - __pycache__
- - '*.pyc'
- - .bundle
- - .tox
- - .nox
- - .kitchen
- - artifacts
- - Gemfile.lock
- # Remote states needs to be defined and under it testingdir or else
- # the local directory isn't copied over to the VM's/Containers that
- # get spun up.
- remote_states:
- testingdir: /testing
- state_top: {}
- pillars: {}
- <% if File.exists?(platformsfile) %>
- <%= ERB.new(File.read(platformsfile)).result %>
- <% else %>
- platforms:
- - name: arch
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-arch-lts' %>
- run_command: /usr/lib/systemd/systemd
- run_options: --entrypoint=/usr/lib/systemd/systemd
- - name: amazon-2
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-amazon-2' %>
- run_command: /usr/lib/systemd/systemd
- run_options: --entrypoint=/usr/lib/systemd/systemd
- - name: centos-7
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-centos-7' %>
- run_command: /usr/lib/systemd/systemd
- run_options: --entrypoint=/usr/lib/systemd/systemd
- - name: centos-8
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-centos-8' %>
- run_command: /usr/lib/systemd/systemd
- run_options: --entrypoint=/usr/lib/systemd/systemd
- - name: debian-9
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-debian-9' %>
- run_command: /lib/systemd/systemd
- run_options: --entrypoint=/lib/systemd/systemd
- provision_command:
- - systemctl enable ssh
- - echo 'L /run/docker.sock - - - - /docker.sock' > /etc/tmpfiles.d/docker.conf
- - name: debian-10
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-debian-10' %>
- run_command: /lib/systemd/systemd
- run_options: --entrypoint=/lib/systemd/systemd
- provision_command:
- - systemctl enable ssh
- - echo 'L /run/docker.sock - - - - /docker.sock' > /etc/tmpfiles.d/docker.conf
- - name: fedora-30
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-fedora-30' %>
- run_command: /usr/lib/systemd/systemd
- run_options: --entrypoint=/usr/lib/systemd/systemd
- - name: fedora-31
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-fedora-31' %>
- run_command: /usr/lib/systemd/systemd
- run_options: --entrypoint=/usr/lib/systemd/systemd
- - name: fedora-32
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-fedora-32' %>
- run_command: /usr/lib/systemd/systemd
- run_options: --entrypoint=/usr/lib/systemd/systemd
- - name: opensuse-15
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-opensuse-15' %>
- run_command: /usr/lib/systemd/systemd
- run_options: --entrypoint=/usr/lib/systemd/systemd
- - name: ubuntu-16.04
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-ubuntu-1604' %>
- run_command: /lib/systemd/systemd
- run_options: --entrypoint=/lib/systemd/systemd
- provision_command:
- - systemctl enable ssh
- - echo 'L /run/docker.sock - - - - /docker.sock' > /etc/tmpfiles.d/docker.conf
- - name: ubuntu-18.04
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-ubuntu-1804' %>
- run_command: /lib/systemd/systemd
- run_options: --entrypoint=/lib/systemd/systemd
- provision_command:
- - systemctl enable ssh
- - echo 'L /run/docker.sock - - - - /docker.sock' > /etc/tmpfiles.d/docker.conf
- - name: ubuntu-20.04
- driver_config:
- image: <%= ENV['SALT_DOCKER_IMAGE'] || 'saltstack/ci-ubuntu-2004' %>
- run_command: /lib/systemd/systemd
- run_options: --entrypoint=/lib/systemd/systemd
- provision_command:
- - systemctl enable ssh
- - echo 'L /run/docker.sock - - - - /docker.sock' > /etc/tmpfiles.d/docker.conf
- <% if vagrant != false %>
- - name: windows-2012r2
- driver:
- box: mwrock/Windows2012R2
- name: vagrant
- gui: true
- transport:
- name: winrm
- username: Administrator
- password: Pass@word1
- provisioner:
- init_environment: |
- Clear-Host
- $AddedLocation ="c:\salt;c:\salt\bin\Scripts"
- $Reg = "Registry::HKLM\System\CurrentControlSet\Control\Session Manager\Environment"
- $OldPath = (Get-ItemProperty -Path $Reg -Name PATH).Path
- $NewPath= $OldPath + ";" + $AddedLocation
- Set-ItemProperty -Path $Reg -Value $NewPath -Name PATH
- reg add "hklm\system\currentcontrolset\control\session manager\memory management" /v pagingfiles /t reg_multi_sz /d "d:\pagefile.sys 4096 8192" /f
- winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="5000"}'
- salt_bootstrap_url: https://raw.githubusercontent.com/saltstack/salt-bootstrap/develop/bootstrap-salt.ps1
- salt_bootstrap_options: ''
- - name: windows-2016
- driver:
- box: mwrock/Windows2016
- name: vagrant
- gui: true
- customize:
- cpus: 4
- memory: 8192
- transport:
- name: winrm
- username: Vagrant
- password: vagrant
- provisioner:
- salt_bootstrap_url: https://raw.githubusercontent.com/saltstack/salt-bootstrap/develop/bootstrap-salt.ps1
- salt_bootstrap_options: -version <%= version %>
- init_environment: |
- Clear-Host
- $AddedLocation ="c:\salt;c:\salt\bin\Scripts"
- $Reg = "Registry::HKLM\System\CurrentControlSet\Control\Session Manager\Environment"
- $OldPath = (Get-ItemProperty -Path $Reg -Name PATH).Path
- $NewPath= $OldPath + ";" + $AddedLocation
- Set-ItemProperty -Path $Reg -Value $NewPath -Name PATH
- reg add "hklm\system\currentcontrolset\control\session manager\memory management" /v pagingfiles /t reg_multi_sz /d "d:\pagefile.sys 4096 8192" /f
- winrm set winrm/config/winrs '@{MaxMemoryPerShellMB="5000"}'
- salt_bootstrap_url: https://raw.githubusercontent.com/saltstack/salt-bootstrap/develop/bootstrap-salt.ps1
- salt_bootstrap_options: ''
- <% end %>
- <% end %>
- suites:
- - name: py3
- <% if File.exists?(verifierfile) %>
- <%= ERB.new(File.read(verifierfile)).result %>
- <% else %>
- verifier:
- name: nox
- run_destructive: true
- coverage: true
- junitxml: true
- sudo: true
- transport: zeromq
- sysinfo: true
- sys_stats: true
- <% end %>
|