I don't get the discussion. PVE will write alot and sooner or later your SD card will fail, your server will crash or just don't boot anymore and you won't be able to use it until you buy a new disk, setup everything again from scratch, restore backups and so on so your server might be offline for hours or even days. If that is just a homeserver you don't rely on for work and you don't care about downtimes and additional hassle and work this might be fine. For everything else you should get a proper drive (or better even two for a mirrored setup) that fits PVEs minimum system requirements instead of screwing around with volatile ram disks or disabling PVE core components, which can cause additinal problems, to increase the life expencation of a SD card by some months. It doesn't really matter if that SD card will last for 3, 6 or 12 months. That all is not really suitable for a server and you could just get a 120GB SATA SSD for 20€ + a USB to SATA case/cable for 10€ that will be faster and last for many years.
Especially if you only got one SD card without any parity/redundancy. Other people here that are forced to use USB sticks atleast use 2 or 3 of them as a mirror so that the server will continue to operate if a stick fails. Then every several months a USB stick will die, they buy a new one and replace it without loosing data or any downtime.
And like fabian already said, that 30GB per day is with ZFS on an SSD. The main problem is not the amout of data that PVE writes, it is the number of small writes. Flash storages like SSDs, USB sticks and SD cards will degrade with every write and unlike HDDs they can't just write a 4KB file to a 4kb sector. NAND flash cells are grouped in big chunks and if you want to write a 4kb file it might need to erase and rewrite for example a big 1MB block. So if you write 100x 4kb it might actually write 100x 1MB to the storage (depending on the hardware that is used and how big this block size is). Because of this write amplification of flash based storages PVE writes terrible amounts of data even if the actual data PVE creates isn't that bad. And then USB sticks and SD cards don't got any cache for optimizing writes so its way more terrible compared to SSDs. And SSDs got garbage collection and wear leveling so that all NAND cells will degrade equally so it will last longer.
And with USB Sticks/SD cards you won't get SMART monitoring, so you never know how worn off that storage is so it might fail without any warning.