Skip to content

Commit

Permalink
Merge pull request #1 from maxhoesel/release/2.0.1
Browse files Browse the repository at this point in the history
Release 2.0.1
  • Loading branch information
maxhoesel authored Oct 12, 2020
2 parents 29936c2 + ad432c3 commit 8d604c6
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 11 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,7 @@ dmypy.json
.pyre/

# ---> Ansible
*.retry
*.retry

# Generated collection
ariosthephoenix-proxmox-*.tar.gz
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ansible Collection - ariosthephoenix.proxmox
# Ansible Collection - maxhoesel.proxmox

A collection for managing Proxmox VE hosts and their guests.

Expand All @@ -19,12 +19,12 @@ Several roles in this collection require the `proxmoxer` and `requests` Python m

- Installation with `pip` (venv recommended): `pip3 install proxomxer requests`

To install this role: `ansible-galaxy collection install ariosthephoenix.proxmox`
To install this role: `ansible-galaxy collection install maxhoesel.proxmox`

# License

GNU GPL3 or later

# Author

Arios <ansible@arios.me>
Max Hösel <ansible@maxhoesel.de>
14 changes: 7 additions & 7 deletions galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
# The namespace of the collection. This can be a company/brand/organization or product namespace under which all
# content lives. May only contain alphanumeric lowercase characters and underscores. Namespaces cannot start with
# underscores or numbers and cannot contain consecutive underscores
namespace: ariosthephoenix
namespace: maxhoesel

# The name of the collection. Has the same character restrictions as 'namespace'
name: proxmox

# The version of the collection. Must be compatible with semantic versioning
version: 2.0.0
version: 2.0.1

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md

# A list of the collection's content authors. Can be just the name or in the format 'Full Name <email> (url)
# @nicks:irc/im.site#channel'
authors:
- Arios <ansible@arios.me>
- Max Hösel <ansible@maxhoesel.de>


### OPTIONAL but strongly recommended
Expand Down Expand Up @@ -49,16 +49,16 @@ tags:
dependencies: {}

# The URL of the originating SCM repository
repository: https://github.com/AriosThePhoenix/ansible-collection-proxmox
repository: https://github.com/maxhoesel/ansible-collection-proxmox

# The URL to any online docs
documentation: https://github.com/AriosThePhoenix/ansible-collection-proxmox
documentation: https://github.com/maxhoesel/ansible-collection-proxmox

# The URL to the homepage of the collection/project
homepage: https://github.com/AriosThePhoenix/ansible-collection-proxmox
homepage: https://github.com/maxhoesel/ansible-collection-proxmox

# The URL to the collection issue tracker
issues: https://github.com/AriosThePhoenix/ansible-collection-proxmox/issues
issues: https://github.com/maxhoesel/ansible-collection-proxmox/issues

build_ignore:
- .venv
2 changes: 2 additions & 0 deletions roles/lxc_container/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Generic example:

```
- hosts: all
gather_facts: no
roles:
- lxc_container:
# This role will connect to this PVE host for various tasks related to container setup
Expand Down Expand Up @@ -92,6 +93,7 @@ all:
# This will create a set of containers, with each container being a member of the `containers` group
- hosts: containers
serial: 1 # Needed to prevent race conditions
gather_facts: no
roles:
- name: lxc_container
```
Expand Down
10 changes: 10 additions & 0 deletions roles/lxc_container_to_ostemplate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Example Playbook

```
- hosts: all
gather_facts: no
roles:
- role: lxc_container_to_ostemplate
pve_host: mypvehost.example.com
Expand Down Expand Up @@ -56,6 +57,15 @@ all:
pve_host: mypvehost.example.com
...
```
Playbook:
```
# This will generate templates of containers, with each container being a member of the `containers` group
- hosts: containers
serial: 1 # Needed to prevent race conditions
gather_facts: no
roles:
- name: lxc_container_to_ostemplate
```

License
-------
Expand Down

0 comments on commit 8d604c6

Please sign in to comment.