k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.2 KiB
93 lines
2.2 KiB
---
|
|
.molecule:
|
|
tags: [ffci-vm-med]
|
|
only: [/^pr-.*$/]
|
|
except: ['triggers']
|
|
image: quay.io/kubespray/vm-kubespray-ci:v6
|
|
services: []
|
|
stage: deploy-part1
|
|
variables:
|
|
VAGRANT_DEFAULT_PROVIDER: "libvirt"
|
|
before_script:
|
|
- groups
|
|
- python3 -m venv citest
|
|
- source citest/bin/activate
|
|
- vagrant plugin expunge --reinstall --force --no-tty
|
|
- vagrant plugin install vagrant-libvirt
|
|
- pip install --no-compile --no-cache-dir pip -U
|
|
- pip install --no-compile --no-cache-dir -r $CI_PROJECT_DIR/requirements.txt
|
|
- pip install --no-compile --no-cache-dir -r $CI_PROJECT_DIR/tests/requirements.txt
|
|
- ./tests/scripts/rebase.sh
|
|
- ./tests/scripts/vagrant_clean.sh
|
|
script:
|
|
- ./tests/scripts/molecule_run.sh
|
|
after_script:
|
|
- ./tests/scripts/molecule_logs.sh
|
|
artifacts:
|
|
when: always
|
|
paths:
|
|
- molecule_logs/
|
|
|
|
# CI template for periodic CI jobs
|
|
# Enabled when PERIODIC_CI_ENABLED var is set
|
|
|
|
.molecule_periodic:
|
|
only:
|
|
variables:
|
|
- $PERIODIC_CI_ENABLED
|
|
allow_failure: true
|
|
extends: .molecule
|
|
|
|
molecule_full:
|
|
extends: .molecule_periodic
|
|
|
|
molecule_no_container_engines:
|
|
extends: .molecule
|
|
script:
|
|
- ./tests/scripts/molecule_run.sh -e container-engine
|
|
when: on_success
|
|
|
|
molecule_docker:
|
|
extends: .molecule
|
|
script:
|
|
- ./tests/scripts/molecule_run.sh -i container-engine/cri-dockerd
|
|
when: on_success
|
|
|
|
molecule_containerd:
|
|
extends: .molecule
|
|
script:
|
|
- ./tests/scripts/molecule_run.sh -i container-engine/containerd
|
|
when: on_success
|
|
|
|
molecule_cri-o:
|
|
extends: .molecule
|
|
stage: deploy-part2
|
|
script:
|
|
- ./tests/scripts/molecule_run.sh -i container-engine/cri-o
|
|
allow_failure: true
|
|
when: on_success
|
|
|
|
# Stage 3 container engines don't get as much attention so allow them to fail
|
|
molecule_kata:
|
|
extends: .molecule
|
|
stage: deploy-part3
|
|
allow_failure: true
|
|
script:
|
|
- ./tests/scripts/molecule_run.sh -i container-engine/kata-containers
|
|
when: on_success
|
|
|
|
molecule_gvisor:
|
|
extends: .molecule
|
|
stage: deploy-part3
|
|
allow_failure: true
|
|
script:
|
|
- ./tests/scripts/molecule_run.sh -i container-engine/gvisor
|
|
when: on_success
|
|
|
|
molecule_youki:
|
|
extends: .molecule
|
|
stage: deploy-part3
|
|
allow_failure: true
|
|
script:
|
|
- ./tests/scripts/molecule_run.sh -i container-engine/youki
|
|
when: on_success
|