aboutsummaryrefslogtreecommitdiff
path: root/ansible
diff options
context:
space:
mode:
Diffstat (limited to 'ansible')
-rw-r--r--ansible/README.md9
-rw-r--r--ansible/requirements.yml4
2 files changed, 7 insertions, 6 deletions
diff --git a/ansible/README.md b/ansible/README.md
index bddd6df..4785691 100644
--- a/ansible/README.md
+++ b/ansible/README.md
@@ -6,7 +6,8 @@ This folder contains Ansible playbooks and roles for configuration management.
- **roles/**: Reusable Ansible roles (e.g., Docker, Nginx).
- **playbooks/**: Playbooks for orchestrating tasks.
-## Known Issue
-- `community.proxmox` v1.4.0 shows deprecation warning about `_collections_compat`
-- Fix is in PR #242, awaiting release
-- Warning will disappear when collection is updated
+## Install requirements
+
+```sh
+ansible-galaxy collection install -r requirements.yml --upgrade
+```
diff --git a/ansible/requirements.yml b/ansible/requirements.yml
index bbb2a03..cd4b021 100644
--- a/ansible/requirements.yml
+++ b/ansible/requirements.yml
@@ -1,7 +1,7 @@
---
collections:
- name: community.general
- version: ">=12.1.0"
+ version: ">=12.2.0"
- name: community.proxmox
- version: ">=1.4.0"
+ version: ">=1.5.0"
...