Search results

  1. A

    Management vlan on bond0

    To get a better picture, what are the other 3 interfaces connected to? The above config only uses a lagged ens4f0 and ens4f1, is that expected? It also sounds like you want the reverse of what i have. Management on tagged vlan (looks like 10.10.69.100/24) and the tag is 69? Your first config...
  2. A

    k3s on lxc - modprob: FATAL: Module overlay not found in directory /lib/modules/5.13.19-1-pve

    also check this as a resource to see if any steps are missed https://gist.github.com/triangletodd/02f595cd4c0dc9aac5f7763ca2264185
  3. A

    k3s on lxc - modprob: FATAL: Module overlay not found in directory /lib/modules/5.13.19-1-pve

    Sorry, i see you are running lsmod on the containers, the main server (pve1 in your case) is what will need its /etc/modules-load.d/modules.conf edited. Can you confirm that this is the case? Also maybe its the screen shots, but there should be an _ (underscore) between nf_nat br_netfilter...
  4. A

    Management vlan on bond0

    Hey, So ive got this working, there are a few pieces of the puzzle, i dont know what you know so forgive me if i go into too much detail, please pic kout the parts that interest you. Setup: i have 3 proxmox hosts. management vlan is set on the 10.0.10.0/24 vlan tag of 10 subnet. We are going to...
  5. A

    Does Proxmox support RoCEv2 (RDMA)?

    Not official, and have no idea how it will interact with Proxmox, however, https://wiki.debian.org/RDMA was a good resource for us in a slurm cluster.
  6. A

    No network after pve6 to pve7 upgrade

    i had a similar issue, i had to add auto to my interfaces like so auto lo iface lo inet loopback auto eno1 iface eno1 inet manual mtu 9000 auto eno2 iface eno2 inet manual mtu 9000 auto bond0 iface bond0 inet manual bond-slaves eno1 eno2 bond-miimon 100 bond-mode 802.3ad...
  7. A

    k3s on lxc - modprob: FATAL: Module overlay not found in directory /lib/modules/5.13.19-1-pve

    I havent read the links above, however, make sure you have the overlay added to your module.conf, here is mine, I run k8s and k3s in LXC root@manifold:~# cat /etc/modules-load.d/modules.conf # /etc/modules: kernel modules to load at boot time. # # This file contains the names of kernel modules...
  8. A

    LXC and passing USB audio

    Adding a bit more, i use this Plantronics calisto on debian 10 laptop and works well aplay -l **** List of PLAYBACK Hardware Devices **** card 0: PCH [HDA Intel PCH], device 0: ALC257 Analog [ALC257 Analog] Subdevices: 1/1 Subdevice #0: subdevice #0 card 0: PCH [HDA Intel PCH], device 3...
  9. A

    LXC and passing USB audio

    Hey Folks, Long-ish thread, TLDR trying to pass through a USB audio device to an LXC container and am having a hard time with it. It might be a pulse audio issue but looking for advice. As to the inevitable WHY, well, because. Yes i know this is easier in a VM. I use nomachine to connect to it...
  10. A

    Bulk Migrate doesnt work with LXC

    Found this via search, same issue, have a few dozen containers. one at a time has the option for restart mode. Bulk migrate doesnt seem to have the option to use restart :-(
  11. A

    Chooseing apparmor config on lxc creation

    Oh thats fun, thanks. do you happen to know the values that each item injects? Does it write to the lxc config directly or have another method. Is there a corresponding API value for that setting? It would make automating easier.
  12. A

    Can not boot! Failed to start AppArmor initialization

    one data point that was weird for me, I hotplugged and configured a local HDD as well as an ISCSI volume. hdd was listed as sdc, upon reboot I had the same problem, upon reboot my drive changed to sdb. After changing this in fstab, booted fine. dmesg showed my samsung ssd now had the sdb instead...
  13. A

    Chooseing apparmor config on lxc creation

    Hey Folks, I have an apparmor profile *_with_NFS that I add to LXCs that need NFS. I rather not all containers get this config. It would be nice to be able to define an lxc at creation to use various profiles. Is this possible? Rather not have to edit each container config file. How are...