add several config files, namely relevant to docker-30 and gitea

This commit is contained in:
Jan Novak
2025-12-27 00:19:16 +01:00
parent cd85cc8163
commit b02ef13a6b
8 changed files with 236 additions and 5 deletions

9
vagrant/Vagrantfile vendored
View File

@@ -7,9 +7,11 @@ VAGRANT_BOX = "generic/ubuntu2204"
VAGRANT_BOX_VERSION = "4.3.12"
CPUS_MASTER_NODE = 2
CPUS_WORKER_NODE = 4
MEMORY_MASTER_NODE = 2048
MEMORY_WORKER_NODE = 4096
WORKER_NODES_COUNT = 2
#MEMORY_MASTER_NODE = 2048
MEMORY_MASTER_NODE = 4096
#MEMORY_WORKER_NODE = 4096
MEMORY_WORKER_NODE = 8192
WORKER_NODES_COUNT = 3
Vagrant.configure(2) do |config|
@@ -84,6 +86,7 @@ Vagrant.configure(2) do |config|
libvirt.cpus = CPUS_WORKER_NODE
libvirt.storage_pool_path = '/srv/vms'
libvirt.storage :file, :size => '50G', :type => 'qcow2'
libvirt.storage :file, :size => '50G', :type => 'qcow2'
end
node.vm.provision "shell", path: "bootstrap_kworker.sh"