Initial commit: Add Vagrant, Ansible playbook, inventory and README
This commit is contained in:
17
Vagrantfile
vendored
Normal file
17
Vagrantfile
vendored
Normal 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
|
Reference in New Issue
Block a user