Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion molecule/netplan/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
- name: "Check that network settings are correct."
ansible.builtin.assert:
that:
- "actual_ip_addresses | ansible.utils.ipaddr('bool')"
- "(actual_ip_addresses | ansible.utils.ipaddr('bool')) is all"
- "target_ip_address | ansible.utils.ipaddr('bool')"
- "actual_interface_name == target_interface_name"
- "target_ip_address in actual_ip_addresses"
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ description = "This collection provides production-ready Ansible roles used for
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"ansible>=11.3.0",
"ansible>=11.9.0",
]

[dependency-groups]
dev = [
"ansible-lint>=25.1.3",
"molecule>=25.3.1",
"molecule-plugins[podman]>=23.7.0",
"ansible-lint>=25.8.1",
"molecule>=25.7.0",
"molecule-plugins[podman]>=25.8.12",
"netaddr>=1.3.0",
"reuse>=5.0.2",
"yamllint>=1.35.1",
"yamllint>=1.37.1",
]
2 changes: 1 addition & 1 deletion roles/gitlab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ gitlab_ip_range: '{{ ansible_facts.default_ipv4.address }}/24'
Set switch to `false` to enable external Gitaly instance:

```yaml
gitlab_use_internal_gitaly: 'false'
gitlab_use_internal_gitaly: false
```

#### Path to GitLab Data Directory
Expand Down
2 changes: 1 addition & 1 deletion roles/gitlab/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ gitlab_redis_sentinel_port: "26379"
gitlab_ip_range: "{{ ansible_facts.default_ipv4.address }}/24"

# Whether to use GitLab Omnibus internal Gitaly
gitlab_use_internal_gitaly: "true"
gitlab_use_internal_gitaly: true
# Data directory to use
gitlab_git_data_dir: "/var/opt/gitlab/git-data"
# Gitaly token
Expand Down
Loading