-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
565 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
{ | ||
"extends": [ | ||
"github>maxhoesel-ansible/.github:renovate-config" | ||
] | ||
], | ||
"pip-compile": { | ||
"fileMatch": ["^requirements\\.txt$"] | ||
}, | ||
"pip_requirements": { | ||
"enabled": false | ||
}, | ||
"pip_setup": { | ||
"enabled": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,38 @@ | ||
authors: | ||
- Max Hösel <[email protected]> | ||
- Max Hösel <[email protected]> | ||
build_ignore: | ||
- .circleci | ||
- .github | ||
- .config | ||
- .vscode | ||
- dist | ||
- CODE_OF_CONDUCT.md | ||
- CONTRIBUTING.md | ||
- .yamllint | ||
- '*.tar.gz' | ||
- .venv | ||
- .tox | ||
- .pytest_cache | ||
- scripts | ||
- .pre-commit-config.yaml | ||
- .readthedocs.yaml | ||
- pyproject.toml | ||
- requirements.txt | ||
- '**/requirements.txt' | ||
- .circleci | ||
- .github | ||
- .vscode | ||
- dist | ||
- CODE_OF_CONDUCT.md | ||
- CONTRIBUTING.md | ||
- .yamllint | ||
- "*.tar.gz" | ||
- .venv | ||
- .tox | ||
- .pytest_cache | ||
- scripts | ||
- .pre-commit-config.yaml | ||
- .readthedocs.yaml | ||
- pyproject.toml | ||
- requirements.txt | ||
- "**/requirements.txt" | ||
dependencies: | ||
ansible.posix: '>=1.0,<2.0' | ||
ansible.posix: ">=1.0,<2.0" | ||
description: Collection dealing with Proxmox VE and PBS hosts | ||
issues: https://github.com/maxhoesel-ansible/ansible-collection-proxmox/issues | ||
license: | ||
- GPL-3.0-or-later | ||
license_file: '' | ||
- GPL-3.0-or-later | ||
license_file: "" | ||
name: proxmox | ||
namespace: maxhoesel | ||
readme: README.md | ||
repository: https://github.com/maxhoesel-ansible/ansible-collection-proxmox | ||
tags: | ||
- proxmox | ||
- lxc | ||
- kvm | ||
- virtualization | ||
- pbs | ||
- proxmox | ||
- lxc | ||
- kvm | ||
- virtualization | ||
- pbs | ||
version: 5.1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# This file is only a template! | ||
# Use requirements.txt generated by pip-compile to install dependencies | ||
|
||
# Requirements for developing this collection | ||
# Includes utilities, CLI helpers and so on | ||
|
||
# Include a version of ansible-core for IDE hints and the default pytest version | ||
# It is also needed for docs generation. | ||
# | ||
# This installed version can be overriden by running pytest with the --ansible-version command. | ||
# Ideally pytest would install another venv just for the test, but the pytest-virtualenv package | ||
# is ancient and incompatible with python 3.12. | ||
ansible-core==2.16.6 | ||
|
||
# Libraries used by modules | ||
proxmoxer==2.0.1 | ||
|
||
# Linting & Formatting | ||
ansible-lint==24.5.0 | ||
pylint==3.2.0 | ||
autopep8==2.1.0 | ||
pre-commit==3.7.1 | ||
|
||
# Utility packages used in test fixtures and scripts | ||
pytest==8.2.1 | ||
docker==7.1.0 | ||
pyyaml==6.0.1 | ||
packaging==24.0 | ||
# Dependencies for executing the role scenarios. | ||
molecule==6.0.2 | ||
molecule-plugins[docker]==23.4.1 | ||
|
||
# Generating requirements and syncing venv | ||
pip-tools==7.4.1 | ||
|
||
# Docs | ||
antsibull-docs==2.11.0 | ||
ansible-pygments==0.1.1 | ||
sphinx==7.3.7 | ||
sphinx-ansible-theme==0.10.3 |
Oops, something went wrong.