Recent content by rwanito

  1. R

    How to "luks" without physical installation

    Hello everyone, I’m currently using a server hosted by OneProvider. They offer an “automatic” installer for Proxmox VE 7, but it doesn’t allow any customization during the installation—specifically, no options for partitioning. As it stands, when Proxmox boots up, the default setup is: 2x2TB...
  2. R

    Architecture multi clusters with ceph

    Hello, Thank you for this answer. I'll take a look because it seems to be very interesting !
  3. R

    Architecture multi clusters with ceph

    Hello, I'm looking for a specific advice about the following architecture. I would like to have 6 proxmox servers with ceph. But it is a bit tricky since the 3 and 3 servers are separated by a slow/er link. This is why, I'm searching for similar configurations or suggestions to achieve that...
  4. R

    use distrobuilder cloud vm with cloud-init

    Hello, I try to use a fresh created cloud vm created via distrobuilder. Distrobuilder is a tool who allows me to create LXC image and qcow2 images. I use this cloud qcow2 : repo. And to create it in my cluster : qm create 106 --cores 4 --name "debian-bullseye-cloud-template" --memory 4096...
  5. R

    Auto DHCP/DNS

    Super ! Thanks for your reply ! Okay, so basically, ansible via proxmoxer can achieve this ! Do you think I can have a local private network in the cluster. Or the private network can be only acceded by the local machines ?
  6. R

    Auto DHCP/DNS

    Hello, I'm trying to find solutions on this following need : How can I deploy an VM/LXC with an automatic local IP (via DHCP?) and register this IP in a reverse proxy connected to the only public IP of the cluster. So to sum up, I have a cluster of minimum of three servers. Each time I deploy...
  7. R

    Replace only root disk for LXC

    Okay right. I hope in next feature, it will be possible ! Thanks
  8. R

    Use hostname as DNS

    Hi ! When we configure hostname on CT or VM, it will be interesting to use that as DNS. For example my CT117 use `ping CT118` to access the other container addressed with DHCP. Is it a native feature or do I need specific DNS/DHCP ? Thanks
  9. R

    Replace only root disk for LXC

    Hi! I update this. I know, it's possible to manually keep the file /etc/pve/lxc..., recreate the CT and replace the new one by the old one. But, is there a native way ? Like docker, simply change the image and keep the volume. Thanks !
  10. R

    How do I restore or recreate a CT using an exisitng subvol (on ZFS)?

    Hi ! How can I create a CT with the same VMID ? In fact, when I remove a CT, proxmox also removes others mountpoints. So after "remove CT", pct rescan scans nothing. I have a new template and I want to install it on an existing CT while keeping data. Is i possible natively ? Thanks
  11. R

    Replace only root disk for LXC

    Hello, I would to know if it's possible to update only the root disk for LXC container ? The perfect way for me is to be able to use only tools like ansible proxmox or the proxmox api. The first deployment can be done easily with mount points. But, when I want to update my rootfs, it's very...
  12. R

    Install python3-lxc

    Hi ! I want to deploy lxc cluster with ansible and configure them. It's easy to deploy lxc with proxmoxer plugin, python needs only a plugin from github. But, once deployed, lxc containers are not usable with SSH so I've searched a solution to configure my lxc. A solution is to change the...
  13. R

    Keep or reuse lxc volume

    Hi ! I use LXC to run services. But, if a service goes down or be corrupted I want to remove the LXC container and renew it. The same case if I upgrade the rootfs. But, I have mount points that contain data and I want to keep them or reuse them without delete sensitive data. My volumes are on...
  14. R

    Use LXC

    Hi, Thanks a lot for your reply ! I'll try all with LXC. It's less complex than k8s for the rest of the team ! Have you already try to add a system like a hearbeat in a LXC cluster ? Like k8s can do with healthcheck ? It will be a system which restart or renew a container if it goes down. Thanks !
  15. R

    Use LXC

    Hi ! I'm thinking about a cluster of service in a cluster of proxmox server. I have so many ideas but I want to take the maximum of proxmox. I'm a docker user and I have habits like : Docker file, docker-compose...etc Can I have the same things into LXC. For example : - Wordpress with...