Ansible-create-proxmox-host Alternatives
Similar projects and alternatives to ansible-create-proxmox-host
-
-
InfluxDB
Purpose built for real-time analytics at any scale. InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
NOTE:
The number of mentions on this list indicates mentions on common posts plus user suggested alternatives.
Hence, a higher number means a better ansible-create-proxmox-host alternative or higher similarity.
ansible-create-proxmox-host discussion
ansible-create-proxmox-host reviews and mentions
Posts with mentions or reviews of ansible-create-proxmox-host.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2021-03-20.
-
Docker inside LXC on Proxmox 7 - failing with: OCI runtime create failed
References: https://danthesalmon.com/running-docker-on-proxmox/ https://old.reddit.com/r/Proxmox/comments/lsrt28/easy_way_to_run_docker_in_an_unprivileged_lxc_on/gp8g6vv/ https://github.com/alexpdp7/ansible-create-proxmox-host#docker-setup https://thehomelab.wiki/books/promox-ve/page/setup-and-install-docker-in-a-promox-7-lxc-conainer https://www.turnkeylinux.org/core https://docs.docker.com/engine/install/debian/ https://documentation.portainer.io/v2.0/deploy/ceinstalldocker/ Steps: Create a zvol (on a root pool in this example, but can be anywhere): zfs create -s -V 100G n1p1ssd/docker-lxc docker-lxc is the zvol name, can be anything, and 30G is a 30GB size (arbitrary tbh, depends on how many images you'll have and how you manager other container data) Check it's actually sparse: zfs get volsize,referenced n1p1ssd/docker-lxc volsize should be 30GB (that's the max it can take), referenced is how much is actually used (should be very little when it's just created) Format it as xfs: mkfs.xfs /dev/zvol/n1p1ssd/docker-lxc Mount it into a temp location to change permissions (as mentioned in one of the replies): mkdir /tmp/zvol_tmp mount /dev/zvol/n1p1ssd/docker-lxc /tmp/zvol_tmp chown -R 100000:100000 /tmp/zvol_tmp umount /tmp/zvol_tmp add mountpoint into lxc, adding this into /etc/pve/lxc/150.conf: mp0: /dev/zvol/n1p1ssd/docker-lxc,mp=/var/lib/docker,backup=0, where X is the number for your mountpoint (in case there are others already present) Use xfs - this fsystem is used by default for VMs im proxmox. It allows me to expand disk size fairly easily when needed. So i use 8gb as initial size instead of 30gb. Offcourse overlay2 works fine on it. You can handle snapshots/backups via ZFS itself! The volume is just another object on your zfs pool, so whatever you use for managing it can work with volumes as well. Eg I use Sanoid for my snapshot management (and included syncoid for remote replication) Now install docker, then portainer.
-
Got Docker running on LXC + ZFS, so now I'm VM free
https://github.com/alexpdp7/ansible-create-proxmox-host#docker-setup
Stats
Basic ansible-create-proxmox-host repo stats
3
20
0.0
over 1 year ago