Recent content by sterzy

  1. sterzy

    LXC: cannot mount /run inside guest after PVE 8 to 9 upgrade (was: loopback interface not coming up)

    I can't directly reproduce this I am sad to say, but my assumption would be that some services write to /run before the move mount succeeds. Hence, the files are simply written to the guests root file system. All the fix does is generally allow the move mount, it does not clean up files that...
  2. sterzy

    ACME client includes private IP in request

    As discussed privately, I am posting the results of my investigation here to help other users running into the same issue. What confused me, is that it complained about an IP identifier, which is odd, because we only allow DNS identifiers in the first place [1]. So where did the IP come from if...
  3. sterzy

    LXC: cannot mount /run inside guest after PVE 8 to 9 upgrade (was: loopback interface not coming up)

    Finally got around to this and managed to reproduce this by upgrading a Devuan 5.0 container to Devuan 6.0 via the official guide [1] on a PVE 9 node. When nesting is set we lxc enables much more permissive mounting: # TODO: There doesn't seem to be a way to ask for: # mount...
  4. sterzy

    LXC: cannot mount /run inside guest after PVE 8 to 9 upgrade (was: loopback interface not coming up)

    Hey, yeah sorry I've been kind of swamped with other tasks recently. I'll see what I can do here, though.
  5. sterzy

    Datacenter Manager API Dev Guide

    Are you sure you want to interact with Proxmox VE SDN feature through Proxmox Datacenter Manager? Those are separate products and Proxmox Datacenter Manager currently only exposes a certain subset of Proxmox VE's SDN API. The API documentation for Proxmox VE can be found here...
  6. sterzy

    Datacenter Manager API Dev Guide

    You may want to take a look at our hosting partner [1]. Though, testing against PDM should be fairly straight forward on local hardware too. You can grab the ISO from our website [2] and spin up a VM. The minimum system requirements aren't that high for a basic setup [3]. [1]...
  7. sterzy

    Datacenter Manager API Dev Guide

    Hey, we provide an API documentation analogous to our other products over here: https://pdm.proxmox.com/docs/api-viewer/index.html Hope that helps.
  8. sterzy

    ACME client includes private IP in request

    Ah sorry about that, send you a message now, hope that works.
  9. sterzy

    ACME client includes private IP in request

    Hey, thanks for the provided information. This seems a little weird to me. Would you mind providing the account config for this ACME server? It should be located in /etc/proxmox-datacenter-manager/acme/accounts/<acount-name>. It would also be helpful if you could provide uncensored config files...
  10. sterzy

    Is ceph 20.2.2 coming to proxmox soon?

    Yes this is being worked on [1] and will likely be available from the Ceph test repository once released. [1]: https://lore.proxmox.com/all/20260618130716.1810096-1-k.chai@proxmox.com/ [2]: https://pve.proxmox.com/pve-docs/pve-admin-guide.html#sysadmin_package_repositories_ceph
  11. sterzy

    Getting client timeouts in PDM system log

    Thanks for creating that, I added the Bugzilla issue to our internal tooling as well, so updates should follow there once available!
  12. sterzy

    Getting client timeouts in PDM system log

    Feel free to open a bug report for this, it might be sensible and give other user a heads-up that we are already tracking this. However, I did already add this to our internal issue tracking as a point for improvement. So hopefully it won't get lost either way. To my knowledge InfluxDB uses an...
  13. sterzy

    Getting client timeouts in PDM system log

    Yeah, it sounds like the metrics collection task is struggling with the initial import here. There is just so much data on that remote, that the request takes almost three minutes to complete. That runs into a timeout on the PDM side. So yeah, we'll need to increase the timeout here or make the...
  14. sterzy

    Getting client timeouts in PDM system log

    This sounds like the request takes a very long time and eventually fails. What does the following return: time pvesh get /cluster/metrics/export --history 1 --local-only 0 --start-time 0 > /dev/null on a node of the affected cluster?
  15. sterzy

    PDM 1.1.1 unable to add AD realm with anonymous search

    Hm yeah, it seems that our Rust code is a bit stricter here. The Perl variant only checks if a connection can be established, while the Rust code does try to carry out an actual search. Since the search requires a bind, adding the realms fails. I'll update the thread here once I know more/how to...