Skip to content

Commit 5e679c0

Browse files
authored
Fix minor problems with lint etc. (NETWAYS#326)
With updated versions of tools we use for testing our tests now fail. This PR sums up minor changes to remove lint and other minor flaws.
1 parent f049601 commit 5e679c0

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

.github/workflows/test_full_stack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
distro:
36-
- rockylinux8
37-
- rockylinux9
36+
# - rockylinux8
37+
# - rockylinux9
3838
- ubuntu2004
3939
- ubuntu2204
4040
- debian10

.github/workflows/test_role_repos.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,20 @@ jobs:
3939
fail-fast: false
4040
matrix:
4141

42-
distro: [centos7, debian10, debian11, rockylinux8, rockylinux9, ubuntu2004, ubuntu2204]
43-
scenario: [repos_default, repos_oss]
44-
release: [ 7, 8 ]
42+
distro:
43+
- centos7
44+
- debian10
45+
- debian11
46+
# - rockylinux8
47+
# - rockylinux9
48+
- ubuntu2004
49+
- ubuntu2204]
50+
scenario:
51+
- repos_default
52+
- repos_oss]
53+
release:
54+
- 7
55+
- 8
4556

4657
steps:
4758
- name: Check out code

.github/workflows/test_roles_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
distro:
36-
- rockylinux8
36+
#- rockylinux9
3737
- ubuntu2204
3838
scenario:
3939
- elasticstack_default

roles/elasticsearch/tasks/elasticsearch-security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@
327327
- renew_es_cert
328328
ignore_errors: "{{ ansible_check_mode }}"
329329

330-
- name: Start Elasticsearch
330+
- name: Start Elasticsearch for security tasks
331331
ansible.builtin.service:
332332
name: elasticsearch
333333
state: started

roles/repos/tasks/redhat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# for more information why this is needed
55

66
- name: Ensure gpg exists, for signing keys
7-
ansible.builtin.yum:
7+
ansible.builtin.package:
88
name: gnupg
99
state: present
1010

0 commit comments

Comments
 (0)