d3954a5590
* fix flake8 errors in Kubespray CI - tox-inventory-builder * fix flake8 errors in Kubespray CI - tox-inventory-builder * Invalidate CRI-O kubic repo's cache Signed-off-by: Victor Morales <v.morales@samsung.com> * add support to configure pkg install retries and use in CI job tf-ovh_ubuntu18-calico (due to it failing often) * Switch Calico and Cilium image repos to Quay.io Co-authored-by: Victor Morales <v.morales@samsung.com> Co-authored-by: Barry Melbourne <9964974+bmelbourne@users.noreply.github.com> Conflicts: roles/download/defaults/main.yml * up vagrant box to fedora/33-cloud-base in cri-o molecule tests (cherry picked from commit06ec5393d7
) * add Google proxy-mirror-cache for docker hub to CI tests (cherry picked from commitd739a6bb2f
) * containerd docker hub registry mirror support * containerd docker hub registry mirror support * add docs * fix typo * fix yamllint * fix indent in sample and ansible-playbook param in testcases_run * fix md * mv common vars to tests/common/_docker_hub_registry_mirror.yml * checkout vars to upgrade tests (cherry picked from commit4a8a52bad9
) * Exclude .git/ from shellcheck If a branch name contains '.sh', current shellcheck checks the branch file under .git/ and outputs error because the format is not shell script one. This makes shellcheck exclude files under .git/ to avoid this issue. (cherry picked from commite2467d87b6
) Co-authored-by: Hans Feldt <2808287+hafe@users.noreply.github.com> Co-authored-by: Sergey <s.bondarev@southbridge.ru> Co-authored-by: Kenichi Omichi <ken-oomichi@wx.jp.nec.com>
48 lines
807 B
YAML
48 lines
807 B
YAML
---
|
|
driver:
|
|
name: vagrant
|
|
provider:
|
|
name: libvirt
|
|
lint: |
|
|
set -e
|
|
yamllint -c ../../../.yamllint .
|
|
platforms:
|
|
- name: ubuntu1804
|
|
box: generic/ubuntu1804
|
|
cpus: 2
|
|
memory: 1024
|
|
groups:
|
|
- kube-master
|
|
- name: centos7
|
|
box: centos/7
|
|
cpus: 2
|
|
memory: 1024
|
|
groups:
|
|
- kube-master
|
|
- name: centos8
|
|
box: centos/8
|
|
cpus: 2
|
|
memory: 1024
|
|
groups:
|
|
- kube-master
|
|
- name: fedora
|
|
box: fedora/33-cloud-base
|
|
cpus: 2
|
|
memory: 1024
|
|
groups:
|
|
- kube-master
|
|
provisioner:
|
|
name: ansible
|
|
env:
|
|
ANSIBLE_ROLES_PATH: ../../../../
|
|
config_options:
|
|
defaults:
|
|
callback_whitelist: profile_tasks
|
|
lint:
|
|
name: ansible-lint
|
|
options:
|
|
c: ../../../.ansible-lint
|
|
verifier:
|
|
name: testinfra
|
|
lint:
|
|
name: flake8
|