I doubt you have a whole lot of control over this, but this website is misery to use on a phone. Browsing scripts gives you six or ten tiles per page, navigation buttons are only in the header. There are no page numbers or any indication of progress. At a glance, there appears to be no way of filtering or sorting, although there is some arbitrary grouping being applied in the middle of the list. Also the script descr…
Show HN: Proxmox VE Helper Scripts
81–90 of 90 posts
Re: Show HN: Proxmox VE Helper Scripts
#82Earlier quoted context omitted.
I've pretty thoroughly drunk the NixOS Kool-aid. For awhile I ran Docker Swarm with a bunch of SBCs, then k8s, then just a big server running Ubuntu + Cockpit, then Proxmox, until I have finally settled on NixOS. NixOS has decent container support if necessary, but I've found that its declarative nature means I almost never bother with containers. "Uninstalling" something is generally as simple as "remove it from the…
Any reason you didn't go NixOS in a Proxmox VM? The advantage would not be having to do a full reinstall if anything went wrong and being able to spin up other OS' if needed. The downside would be a few percentage of performance loss.
Of course I could install NixOS inside Proxmox, but part of the appeal of NixOS is that everything in the system is managed by the configuration.
Re: Show HN: Proxmox VE Helper Scripts
#83A bit of a tangent. I've been trying to manage libvirt& Unraid through terraform, but have run into issue after issue. I'm about given up, and will just manage the virtual machines manually... What's the virtualization technology on proxmox? What's the advantage to using something like this as opposed to terraform or salt stack or Ansible?
- provision VMs with Terraform - configure/maintain your VM with something like Ansible
The provider also allows your to schedule LXC if you'd like to target that instead.
Re: Show HN: Proxmox VE Helper Scripts
#84I have been looking into setting up my first Proxmox box, here is my take as a newcomer. I wanted to do what I think is a very basic and very common setup: Modem > proxmox box > OPNsense VM > physical wifi router via onboard 10Gb NIC + internal network VMs like OMV etc. The goal is to add a full network filter via OPNsense, and allow access to a media sever and backup etc from the internal network. I see no OPNsense,…
I run proxmox and have set up VLANs. The router port to the proxmox machine is set up for tagged packets that isolate incoming/outgoing traffic. After that my VMs and Containers are easily set up to "live" on one or more networks. For me the firewall rules on the router determine what traffic can be relayed between vlans through the router. I'm pretty sure you could set up opnsense running in a container or vm to do…
Re: Show HN: Proxmox VE Helper Scripts
#85A bit of a tangent. I've been trying to manage libvirt& Unraid through terraform, but have run into issue after issue. I'm about given up, and will just manage the virtual machines manually... What's the virtualization technology on proxmox? What's the advantage to using something like this as opposed to terraform or salt stack or Ansible?
You can split the difference with the Proxmox provider for Terraform[1]. The workflow would be: - provision VMs with Terraform - configure/maintain your VM with something like Ansible The provider also allows your to schedule LXC if you'd like to target that instead. [1]: https://github.com/Telmate/terraform-provider-proxmox
Re: Show HN: Proxmox VE Helper Scripts
#86What capabilties does Proxmox have that are missing from simple KVM? Just a web interface?
While qemu is common way of using kvm, but running qemu directly is quite annoying. So you have stuff like libvirt and proxmox as wrappers around qemu.
Re: Show HN: Proxmox VE Helper Scripts
#87Very sad state of affairs.
Re: Show HN: Proxmox VE Helper Scripts
#88I have been using Proxmox VE for several years now and have most of my services running as docker containers in one VM. This always bothered me because I wanted to be able to control the individual services and their backup jobs using the Proxmox interface. After checking out these scripts I already moved a couple services (Caddy and Wireguard) over to LXC containers and am very impressed by how easy it was to do. Ba…
Careful. I too thought about this, but docker containers have the following benefits over the LXC scripts: - Updates and automatic upgrades between major versions. - The developer who wrote the software created the container (most of the time), this means its a supported environment. Also, as they have the insight into the application and future upgrades the environment has been setup correctly for each version. If y…
Re: Show HN: Proxmox VE Helper Scripts
#89I have been looking into setting up my first Proxmox box, here is my take as a newcomer. I wanted to do what I think is a very basic and very common setup: Modem > proxmox box > OPNsense VM > physical wifi router via onboard 10Gb NIC + internal network VMs like OMV etc. The goal is to add a full network filter via OPNsense, and allow access to a media sever and backup etc from the internal network. I see no OPNsense,…
There is no OPNSense script I think historically in part because any misconfig could expose the Promox instance to the world. It is easy enough for advanced users to spin up a VM with the ISO. There has been a request for a OPNSense script made recently. I agree with OMV. It certainly can be used as is, but not usually how people want to use it. A note was added to the script a few days ago. > I don't see any glue sc…
I think I will stick to using proxmox virtual ports to create my network so I can more easily only stick to individual device registration in tailscale and save on that overhead when I'm home, but then also add tailscale /headscale into the mix somewhere so I can tap in via VPN when I am out of the house.
Tailscale and OPNsense are more difficult to get working together due to conflicting project goals (one blocks well, the other opens up well), but it looks like it's worth it to me.
Re: Show HN: Proxmox VE Helper Scripts
#90Earlier quoted context omitted.
Different technologies are for different approaches and applications. It's relatively trivial to use the pve command line utility to create or modify vms in proxmox. Still, the originating reason of this post is due to a large number of useful scripts to help make things more manageable and maintainable, and the founder of it having to step away, and there being gratitude for their help to make things much more manag…
> Still, the originating reason of this post is due to a large number of useful scripts to help make things more manageable and maintainable Also makes it very quick to try out an application, arguably less time than even docker.
Docker is a step or two away from packaging installers for the masses.