xoxys.pve/README.md

98 lines
2.0 KiB
Markdown
Raw Normal View History

2018-08-18 14:36:43 +00:00
# xoxys.pve
2024-02-19 09:50:38 +00:00
[![Build Status](https://ci.rknet.org/api/badges/ansible/xoxys.pve/status.svg)](https://ci.rknet.org/repos/ansible/xoxys.pve)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?label=license)](https://gitea.rknet.org/ansible/xoxys.pve/src/branch/main/LICENSE)
Basic role to configure a [Proxmox VE](https://www.proxmox.com/en/proxmox-ve) server.
Proxmox VE is a complete open-source platform for all-inclusive enterprise virtualization
that tightly integrates KVM hypervisor and LXC containers, software-defined storage and
networking functionality on a single platform.
{{< hint type=important >}}
This role covers only some really basic configurations and should be considered as not production ready.
{{< /hint >}}
## Table of content
- [Requirements](#requirements)
- [Default Variables](#default-variables)
- [pve_auth_pam_description](#pve_auth_pam_description)
- [pve_auth_pam_is_default](#pve_auth_pam_is_default)
- [pve_auth_pve_description](#pve_auth_pve_description)
- [pve_auth_pve_is_default](#pve_auth_pve_is_default)
- [pve_disk_mount](#pve_disk_mount)
- [Dependencies](#dependencies)
- [License](#license)
- [Author](#author)
---
## Requirements
- Minimum Ansible version: `2.10`
## Default Variables
### pve_auth_pam_description
#### Default value
```YAML
pve_auth_pam_description: Linux PAM standard authentication
```
### pve_auth_pam_is_default
#### Default value
```YAML
pve_auth_pam_is_default: true
```
### pve_auth_pve_description
#### Default value
```YAML
2024-09-29 20:29:01 +00:00
pve_auth_pve_description: Proxmox VE authentication server
2024-02-19 09:50:38 +00:00
```
### pve_auth_pve_is_default
#### Default value
```YAML
pve_auth_pve_is_default: false
```
### pve_disk_mount
#### Default value
```YAML
pve_disk_mount: []
```
2024-09-29 20:29:01 +00:00
#### Example usage
```YAML
pve_disk_mount:
- path: /mnt/backup
src: /dev/sdX
fstype: ext4
opts:
state: present
```
2024-02-19 09:50:38 +00:00
## Dependencies
None.
## License
MIT
## Author
[Robert Kaussow](https://gitea.rknet.org/xoxys)