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