Skip to content

Commit 6d07214

Browse files
authored
Merge pull request #464 from tobiashuste/ansible-2-19-compatibility
Ansible 2.19 compatibility
2 parents 94e7260 + 7de6980 commit 6d07214

File tree

5 files changed

+271
-168
lines changed

5 files changed

+271
-168
lines changed

molecule/netplan/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
- name: "Check that network settings are correct."
3838
ansible.builtin.assert:
3939
that:
40-
- "actual_ip_addresses | ansible.utils.ipaddr('bool')"
40+
- "(actual_ip_addresses | ansible.utils.ipaddr('bool')) is all"
4141
- "target_ip_address | ansible.utils.ipaddr('bool')"
4242
- "actual_interface_name == target_interface_name"
4343
- "target_ip_address in actual_ip_addresses"

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ description = "This collection provides production-ready Ansible roles used for
1010
readme = "README.md"
1111
requires-python = ">=3.11"
1212
dependencies = [
13-
"ansible>=11.3.0",
13+
"ansible>=11.9.0",
1414
]
1515

1616
[dependency-groups]
1717
dev = [
18-
"ansible-lint>=25.1.3",
19-
"molecule>=25.3.1",
20-
"molecule-plugins[podman]>=23.7.0",
18+
"ansible-lint>=25.8.1",
19+
"molecule>=25.7.0",
20+
"molecule-plugins[podman]>=25.8.12",
2121
"netaddr>=1.3.0",
2222
"reuse>=5.0.2",
23-
"yamllint>=1.35.1",
23+
"yamllint>=1.37.1",
2424
]

roles/gitlab/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ gitlab_ip_range: '{{ ansible_facts.default_ipv4.address }}/24'
309309
Set switch to `false` to enable external Gitaly instance:
310310

311311
```yaml
312-
gitlab_use_internal_gitaly: 'false'
312+
gitlab_use_internal_gitaly: false
313313
```
314314

315315
#### Path to GitLab Data Directory

roles/gitlab/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ gitlab_redis_sentinel_port: "26379"
5353
gitlab_ip_range: "{{ ansible_facts.default_ipv4.address }}/24"
5454

5555
# Whether to use GitLab Omnibus internal Gitaly
56-
gitlab_use_internal_gitaly: "true"
56+
gitlab_use_internal_gitaly: true
5757
# Data directory to use
5858
gitlab_git_data_dir: "/var/opt/gitlab/git-data"
5959
# Gitaly token

0 commit comments

Comments
 (0)