forked from linux-system-roles/ha_cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci-tier1.yml.j2
50 lines (48 loc) · 2.06 KB
/
.gitlab-ci-tier1.yml.j2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
# yamllint disable rule:line-length
# RHEL 8.4 with the newest compatible Ansible doesn't work with the new ansible
# galaxy deployed on 2023-09-30. It works with the old one, though, so we set
# it to connect to the old one using the --server option.
# references:
# https://www.ansible.com/blog/new-ansible-galaxy
# https://forum.ansible.com/t/new-ansible-galaxy/1155/20
# https://github.com/ansible/awx/issues/14496#issuecomment-1743711473
.run_test:
before_script:
- echo "$BASE_IMAGE_NAME"
- echo "$TEST_NAME"
- source "${PYENV_ROOT}/bin/activate"
- python --version
- ansible --version
script:
- ([ "x${BASE_IMAGE_NAME}" == "xLsrRhel8OldestAnsibleCurrent" ]) && GALAXY_SERVER="https://old-galaxy.ansible.com" || GALAXY_SERVER=""
- echo "$GALAXY_SERVER"
- ansible-galaxy collection install -vvv "--server=${GALAXY_SERVER}" -r ./meta/collection-requirements.yml
- varsparams=""
# Use ansible-2.16-like Python in ansible 2.17+ (RHEL8 supports ansible < 2.17 only)
# See https://github.com/linux-system-roles/ha_cluster/pull/205#issuecomment-2141431543
- (echo "x${BASE_IMAGE_NAME}" | grep -Eq '^xLsrRhel9.+AnsibleCurrent$') && varsparams+=" -e ansible_python_interpreter=/usr/bin/python3"
- echo "$varsparams"
- TEST_FILE_NAME="tests_${TEST_NAME}.yml"
- echo "$TEST_FILE_NAME"
- (grep "$TEST_FILE_NAME" tests/no-vault-variables.txt) || varsparams+=" -e @tests/vars/vault-variables.yml"
- echo "$varsparams"
- ansible-playbook -v -i localhost, -c local --vault-password-file tests/vault_pwd $varsparams "tests/${TEST_FILE_NAME}"
after_script:
- mkdir var_log
- journalctl -x > var_log/journal
- cp -r /var/log/pcsd/ var_log/ || true
- cp -r /var/log/pacemaker/ var_log/ || true
- cp -r /var/log/cluster/ var_log/ || true
artifacts:
name: "ha_cluster-${CI_COMMIT_SHORT_SHA}-${TEST_NAME}-${BASE_IMAGE_NAME}"
paths:
- var_log/
when: always
expire_in: 2 weeks
{% for test_name in tests %}
{{ test_name }}:
extends: .run_test
variables:
TEST_NAME: {{ test_name }}
{% endfor %}