Playbook as follows:
- name: Create a full clone
hosts: PVE201
tasks:
- name: Create a full clone of 900
community.general.proxmox:
api_host: 192.168.90.201
api_user: root@pam
api_password: Passwrod
clone: 900 # vmid to clone
clone_type: full
cores: 2 # number of cores per cpu socket
cpus: 2 # number of cpu sockets
description: "Ubuntu 22.04 TEST"
disk: 10 # disk size in GB
hostname: ubuntu-2204-test
memory: 2048 # memory in MB
node: pve201
storage: pve_disks
vmid: 777 # new vmid
However, receiving internal server error 500 Configuration file does not exist nodes/pve201/lxc/900.conf - this is correct this is no 900.conf file
This is a standalone PVE server, not in a cluster.
I must specify the node value in the playbook.
What is wrong here?
- name: Create a full clone
hosts: PVE201
tasks:
- name: Create a full clone of 900
community.general.proxmox:
api_host: 192.168.90.201
api_user: root@pam
api_password: Passwrod
clone: 900 # vmid to clone
clone_type: full
cores: 2 # number of cores per cpu socket
cpus: 2 # number of cpu sockets
description: "Ubuntu 22.04 TEST"
disk: 10 # disk size in GB
hostname: ubuntu-2204-test
memory: 2048 # memory in MB
node: pve201
storage: pve_disks
vmid: 777 # new vmid
However, receiving internal server error 500 Configuration file does not exist nodes/pve201/lxc/900.conf - this is correct this is no 900.conf file
This is a standalone PVE server, not in a cluster.
I must specify the node value in the playbook.
What is wrong here?