This file contains hidden or 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
| --- | |
| - name: Configure Proxmox Backup Server (PBS) | |
| hosts: localhost | |
| connection: local | |
| vars: | |
| proxmox_pbs_api_url: "https://yourpbs.tld:8007/api2/json" | |
| proxmox_pbs_username: "root@pam" | |
| proxmox_pbs_password: "rootpassword" | |
| proxmox_pbs_verify_ssl: true | |
| zfs_pool_name: "your_zfs_and_datastore_name" |
This file contains hidden or 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
| #!/bin/bash | |
| # username: root | |
| # password: 123456 | |
| # resize of the file system is not necessary, this is apparently already done by cloud-init | |
| # PLEASE CUSTOMIZE TO YOUR OWN NEEDS | |
| wget https://cloud-images.ubuntu.com/releases/noble/release/ubuntu-24.04-server-cloudimg-amd64.img | |
| qm create 105 \ |