Initial commit: Add Vagrant, Ansible playbook, inventory and README

This commit is contained in:
martin.cholewa
2025-07-08 17:33:01 +02:00
commit 91173b7e34
74 changed files with 2129 additions and 0 deletions

17
Vagrantfile vendored Normal file
View File

@@ -0,0 +1,17 @@
Vagrant.configure("2") do |config|
config.vm.define "kube01" do |kube01|
kube01.vm.box = "bento/ubuntu-22.04"
kube01.vm.hostname = "kube01"
kube01.vm.provider "vmware_fusion" do |v|
v.gui = false
v.memory = 2048
v.cpus = 2
end
kube01.vm.provision "ansible" do |ansible|
ansible.playbook = "vytvor_uzivatele.yml"
ansible.verbose = true
end
end
end