2019-04-01 09:38:33 +00:00
|
|
|
---
|
2016-12-10 02:23:37 +00:00
|
|
|
stages:
|
|
|
|
- unit-tests
|
2018-02-12 15:04:26 +00:00
|
|
|
- deploy-part1
|
2019-06-06 08:00:17 +00:00
|
|
|
- moderator
|
2018-02-12 15:04:26 +00:00
|
|
|
- deploy-part2
|
2020-03-26 20:56:24 +00:00
|
|
|
- deploy-part3
|
2018-02-12 15:04:26 +00:00
|
|
|
- deploy-special
|
2016-12-10 02:23:37 +00:00
|
|
|
|
|
|
|
variables:
|
2022-01-04 15:40:01 +00:00
|
|
|
KUBESPRAY_VERSION: v2.18.0
|
2016-12-10 02:23:37 +00:00
|
|
|
FAILFASTCI_NAMESPACE: 'kargo-ci'
|
2018-11-28 14:13:28 +00:00
|
|
|
GITLAB_REPOSITORY: 'kargo-ci/kubernetes-sigs-kubespray'
|
2016-12-13 22:01:37 +00:00
|
|
|
ANSIBLE_FORCE_COLOR: "true"
|
2018-02-12 10:35:37 +00:00
|
|
|
MAGIC: "ci check this"
|
|
|
|
TEST_ID: "$CI_PIPELINE_ID-$CI_BUILD_ID"
|
|
|
|
CI_TEST_VARS: "./tests/files/${CI_JOB_NAME}.yml"
|
2020-11-30 08:22:49 +00:00
|
|
|
CI_TEST_REGISTRY_MIRROR: "./tests/common/_docker_hub_registry_mirror.yml"
|
2021-11-26 17:00:51 +00:00
|
|
|
CI_TEST_SETTING: "./tests/common/_kubespray_test_settings.yml"
|
2018-02-12 10:35:37 +00:00
|
|
|
GS_ACCESS_KEY_ID: $GS_KEY
|
|
|
|
GS_SECRET_ACCESS_KEY: $GS_SECRET
|
|
|
|
CONTAINER_ENGINE: docker
|
2018-02-12 14:32:40 +00:00
|
|
|
SSH_USER: root
|
2018-02-12 10:35:37 +00:00
|
|
|
GCE_PREEMPTIBLE: "false"
|
|
|
|
ANSIBLE_KEEP_REMOTE_FILES: "1"
|
|
|
|
ANSIBLE_CONFIG: ./tests/ansible.cfg
|
2018-04-10 13:02:33 +00:00
|
|
|
ANSIBLE_INVENTORY: ./inventory/sample/${CI_JOB_NAME}-${BUILD_NUMBER}.ini
|
2018-02-12 10:35:37 +00:00
|
|
|
IDEMPOT_CHECK: "false"
|
|
|
|
RESET_CHECK: "false"
|
|
|
|
UPGRADE_TEST: "false"
|
2020-04-24 12:20:07 +00:00
|
|
|
MITOGEN_ENABLE: "false"
|
2020-04-01 14:23:29 +00:00
|
|
|
ANSIBLE_LOG_LEVEL: "-vv"
|
2020-02-11 09:38:01 +00:00
|
|
|
RECOVER_CONTROL_PLANE_TEST: "false"
|
2021-03-24 00:26:05 +00:00
|
|
|
RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:],kube_control_plane[1:]"
|
2021-10-08 16:01:06 +00:00
|
|
|
TERRAFORM_VERSION: 1.0.8
|
2021-11-11 00:11:50 +00:00
|
|
|
ANSIBLE_MAJOR_VERSION: "2.10"
|
2016-12-10 02:23:37 +00:00
|
|
|
|
|
|
|
before_script:
|
2019-04-24 08:38:01 +00:00
|
|
|
- ./tests/scripts/rebase.sh
|
2019-12-11 08:10:05 +00:00
|
|
|
- update-alternatives --install /usr/bin/python python /usr/bin/python3 1
|
2021-11-11 00:11:50 +00:00
|
|
|
- python -m pip uninstall -y ansible ansible-base ansible-core
|
|
|
|
- python -m pip install -r tests/requirements-${ANSIBLE_MAJOR_VERSION}.txt
|
2019-04-01 09:38:33 +00:00
|
|
|
- mkdir -p /.ssh
|
2016-12-10 02:23:37 +00:00
|
|
|
|
|
|
|
.job: &job
|
|
|
|
tags:
|
2019-04-17 15:32:03 +00:00
|
|
|
- packet
|
2019-04-25 12:24:46 +00:00
|
|
|
image: quay.io/kubespray/kubespray:$KUBESPRAY_VERSION
|
2020-04-01 14:23:29 +00:00
|
|
|
artifacts:
|
2020-07-16 20:45:00 +00:00
|
|
|
when: always
|
2020-04-01 14:23:29 +00:00
|
|
|
paths:
|
|
|
|
- cluster-dump/
|
2016-12-10 02:23:37 +00:00
|
|
|
|
2018-02-12 10:35:37 +00:00
|
|
|
.testcases: &testcases
|
2016-12-10 02:23:37 +00:00
|
|
|
<<: *job
|
2021-09-03 15:00:41 +00:00
|
|
|
retry: 1
|
2016-12-13 22:01:37 +00:00
|
|
|
before_script:
|
2019-12-11 08:10:05 +00:00
|
|
|
- update-alternatives --install /usr/bin/python python /usr/bin/python3 1
|
2019-04-24 08:38:01 +00:00
|
|
|
- ./tests/scripts/rebase.sh
|
2019-04-23 20:36:03 +00:00
|
|
|
- ./tests/scripts/testcases_prepare.sh
|
2016-12-10 02:23:37 +00:00
|
|
|
script:
|
2019-04-23 20:36:03 +00:00
|
|
|
- ./tests/scripts/testcases_run.sh
|
2016-12-13 22:01:37 +00:00
|
|
|
after_script:
|
2020-03-31 12:28:40 +00:00
|
|
|
- chronic ./tests/scripts/testcases_cleanup.sh
|
2016-12-13 22:01:37 +00:00
|
|
|
|
2019-04-16 12:35:05 +00:00
|
|
|
# For failfast, at least 1 job must be defined in .gitlab-ci.yml
|
2018-02-12 15:04:26 +00:00
|
|
|
# Premoderated with manual actions
|
|
|
|
ci-authorized:
|
2019-04-16 12:35:05 +00:00
|
|
|
extends: .job
|
2018-02-12 15:04:26 +00:00
|
|
|
stage: moderator
|
|
|
|
script:
|
|
|
|
- /bin/sh scripts/premoderator.sh
|
|
|
|
except: ['triggers', 'master']
|
2019-08-15 10:02:34 +00:00
|
|
|
# Disable ci moderator
|
|
|
|
only: []
|
2018-02-12 15:04:26 +00:00
|
|
|
|
2019-04-16 12:35:05 +00:00
|
|
|
include:
|
|
|
|
- .gitlab-ci/lint.yml
|
2019-04-19 06:57:54 +00:00
|
|
|
- .gitlab-ci/shellcheck.yml
|
2019-04-16 12:35:05 +00:00
|
|
|
- .gitlab-ci/terraform.yml
|
2019-04-17 15:32:03 +00:00
|
|
|
- .gitlab-ci/packet.yml
|
2020-04-01 14:25:28 +00:00
|
|
|
- .gitlab-ci/vagrant.yml
|