Search results

  1. J

    CephFS trough Proxmox GUI - No VM storage possible?

    I did everything through the GUI. The steps I did were: 1) Create CephFS first https://pve.proxmox.com/wiki/Manage_Ceph_Services_on_Proxmox_VE_Nodes#pveceph_fs. This will create two pools called cephfs_data and cephfs_data 2) Create RBD by clicking on Datacenter -> Add -> RBD. It should...
  2. J

    Ansible proxmox_kvm gettting MAC address for PXE

    Thanks to morph027, the MAC address is returned upon VM creation. Here's my Ansible VM Create task: tasks: - name: VM create proxmox_kvm: api_user: "root@pam" api_password: "{{ api_password }}" api_host: "{{ api_host }}" node: "{{ node }}" name: "{{...
  3. J

    ZFS config recommendation

    For PERC, delete any existing RAID volumes. This will make all the drives "Unassigned" and the PERC should pass through drives. I'm also using 15K RPM SAS drives as well.
  4. J

    Ansible proxmox_kvm gettting MAC address for PXE

    Anyone successfully used the Ansible module of proxmox_kvm to get a MAC address of a VM for a PXE install? Here is the task code: - name: Get Facts proxmox_kvm: api_user: "root@pam" api_password: test api_host: test node: test name: test validate_certs: no...