kubespray/.gitlab-ci.yml

108 lines
2.7 KiB
YAML
Raw Permalink Normal View History

---
2016-12-10 10:23:37 +08:00
stages:
2023-01-09 10:29:27 +08:00
- build
- test
- deploy-part1
- deploy-extended
2016-12-10 10:23:37 +08:00
variables:
2024-09-06 14:02:28 +08:00
KUBESPRAY_VERSION: v2.26.0
2016-12-10 10:23:37 +08:00
FAILFASTCI_NAMESPACE: 'kargo-ci'
GITLAB_REPOSITORY: 'kargo-ci/kubernetes-sigs-kubespray'
2016-12-14 06:01:37 +08:00
ANSIBLE_FORCE_COLOR: "true"
MAGIC: "ci check this"
TEST_ID: "$CI_PIPELINE_ID-$CI_JOB_ID"
CI_TEST_VARS: "./tests/files/${CI_JOB_NAME}.yml"
CI_TEST_REGISTRY_MIRROR: "./tests/common/_docker_hub_registry_mirror.yml"
CI_TEST_SETTING: "./tests/common/_kubespray_test_settings.yml"
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
GCE_PREEMPTIBLE: "false"
ANSIBLE_KEEP_REMOTE_FILES: "1"
ANSIBLE_CONFIG: ./tests/ansible.cfg
ANSIBLE_INVENTORY: ./inventory/sample/${CI_JOB_NAME}-${BUILD_NUMBER}.ini
IDEMPOT_CHECK: "false"
RESET_CHECK: "false"
2022-04-19 15:49:39 +08:00
REMOVE_NODE_CHECK: "false"
UPGRADE_TEST: "false"
MITOGEN_ENABLE: "false"
ANSIBLE_LOG_LEVEL: "-vv"
RECOVER_CONTROL_PLANE_TEST: "false"
RECOVER_CONTROL_PLANE_TEST_GROUPS: "etcd[2:]:kube_control_plane[1:]"
TERRAFORM_VERSION: 1.3.7
2023-01-09 10:29:27 +08:00
PIPELINE_IMAGE: "$CI_REGISTRY_IMAGE/pipeline:${CI_PIPELINE_ID}-${CI_COMMIT_SHORT_SHA}"
2016-12-10 10:23:37 +08:00
before_script:
- ./tests/scripts/rebase.sh
- mkdir -p /.ssh
2016-12-10 10:23:37 +08:00
.job: &job
tags:
- ffci
2023-01-09 10:29:27 +08:00
image: $PIPELINE_IMAGE
artifacts:
when: always
paths:
- cluster-dump/
needs:
- pipeline-image
.job-moderated:
extends: .job
needs:
- pipeline-image
- ci-not-authorized
- check-galaxy-version # lint
- pre-commit # lint
- vagrant-validate # lint
2016-12-10 10:23:37 +08:00
.testcases: &testcases
extends: .job-moderated
retry: 1
interruptible: true
2016-12-14 06:01:37 +08:00
before_script:
- update-alternatives --install /usr/bin/python python /usr/bin/python3 1
- ./tests/scripts/rebase.sh
- ./tests/scripts/testcases_prepare.sh
2016-12-10 10:23:37 +08:00
script:
- ./tests/scripts/testcases_run.sh
2016-12-14 06:01:37 +08:00
after_script:
- ./tests/scripts/testcases_cleanup.sh
2016-12-14 06:01:37 +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-not-authorized:
stage: build
before_script: []
after_script: []
rules:
# LGTM or ok-to-test labels
- if: $PR_LABELS =~ /.*,(lgtm|approved|ok-to-test).*|^(lgtm|approved|ok-to-test).*/i
variables:
CI_OK_TO_TEST: '0'
when: always
- if: $CI_PIPELINE_SOURCE == "schedule" || $CI_PIPELINE_SOURCE == "trigger"
variables:
CI_OK_TO_TEST: '0'
- if: $CI_COMMIT_BRANCH == "master"
variables:
CI_OK_TO_TEST: '0'
- when: always
variables:
CI_OK_TO_TEST: '1'
2018-02-12 23:04:26 +08:00
script:
- exit $CI_OK_TO_TEST
tags:
- ffci
needs: []
2018-02-12 23:04:26 +08:00
include:
2023-01-09 10:29:27 +08:00
- .gitlab-ci/build.yml
- .gitlab-ci/lint.yml
- .gitlab-ci/terraform.yml
- .gitlab-ci/packet.yml
- .gitlab-ci/vagrant.yml
- .gitlab-ci/molecule.yml