Search results

  1. S

    [SOLVED] Very high latency with Intel i226-v NICs

    Disabling VT-D in bios resolved this issue
  2. S

    [SOLVED] Very high latency with Intel i226-v NICs

    Issue persists with a bare-metal debian 13 installation instead of PVE. issue does not occur on a freakin bare-metal Windows 11 install. These two tests were done on the same machine so we can exclude a hardware issue as well.
  3. S

    [SOLVED] Very high latency with Intel i226-v NICs

    G'day Since we started dist-upgrading multiple PVE single node instances from 8 to 9 (various kernel versions), we noticed the Intel i226-v NIC's experiencing very high latency (15-1000 ms). On PVE version 8 we did not experience any latency with these NIC's We ruled out the possibility of...
  4. S

    [SOLVED] Disable ZFS thin provisioning using the auto-install answer file

    Update: I found out about the sparse 0 parameter in /etc/pve/storage.cfg which disables thin-provisioning even after install. I will add this to my playbook for further config.
  5. S

    [SOLVED] Disable ZFS thin provisioning using the auto-install answer file

    Good day, We have used the Proxmox auto install feature using the `answer.toml` file since the release of this feature which is working really well for us. I was wondering if there was a parameter that we could use to disable thin provisioning for the automatic rpool creation? Looking in the...
  6. S

    Automatically assign new autocreated realm users to a group

    For those interested, I got it working! Run this script as a system service so it can watch the /etc/pve/user.cfg file: #!/bin/bash # Configuration PROXMOX_REALM="SSO" DEFAULT_GROUP="Engineers" # Default group for normal users SPECIAL_GROUP="Sysadmins" # Group for specific users...
  7. S

    Automatically assign new autocreated realm users to a group

    We rollout a couple of PVE hosts per month. All these PVE's are currently only reachable using the root@pam user. Lots of our engineer need to login to these systems regularly and since NIS2 required SSO, I am looking to automate to process of: adding the host to authentik by creating a...
  8. S

    Automatically assign new autocreated realm users to a group

    The autocreate users has been enabled for the realm SSO. But I want to automatically assign a user (which comes from the SSO realm) to a certain group when the user logs in for the first time.
  9. S

    Automatically assign new autocreated realm users to a group

    I am currently in the process of automating the deployment of PVE hosts including SSO: For SSO, these steps include: Creating an OpenID-Connect application and provider in Authtentik. Creating a realm with those Authentik parameters in PVE Creating groups, roles and setting ACL's But I am...
  10. S

    Auto install through PXE

    iVentoy was the easiest method so far, however I still have to press enter in the iVentoy menu to boot the iso. Can this be bypassed somehow? I didn't find much info about bypassing this
  11. S

    Auto install through PXE

    Since the auto install feature has been released, I was wondering if anyone has successfully deployed a PVE installation completely automatically using PXE boot? I have tried in the past installing using PXE boot with a `preseed.cfg` file but was unable to configure ZFS this way. I also tried...