From 43827881fbb445816ea2e208c147385a26e33d15 Mon Sep 17 00:00:00 2001 From: "martin.cholewa" Date: Tue, 8 Jul 2025 18:14:26 +0200 Subject: [PATCH] Add Ansible configuration and playbook for user creation; update Vagrantfile for playbook path --- Vagrantfile | 2 +- ansible.cfg => ansible/ansible.cfg | 0 hosts => ansible/hosts | 0 vytvor_uzivatele.yml => ansible/vytvor_uzivatele.yml | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename ansible.cfg => ansible/ansible.cfg (100%) rename hosts => ansible/hosts (100%) rename vytvor_uzivatele.yml => ansible/vytvor_uzivatele.yml (100%) diff --git a/Vagrantfile b/Vagrantfile index bab6a60..3430848 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -13,7 +13,7 @@ Vagrant.configure("2") do |config| end kube01.vm.provision "ansible" do |ansible| - ansible.playbook = "vytvor_uzivatele.yml" + ansible.playbook = "ansible/vytvor_uzivatele.yml" ansible.verbose = true end end diff --git a/ansible.cfg b/ansible/ansible.cfg similarity index 100% rename from ansible.cfg rename to ansible/ansible.cfg diff --git a/hosts b/ansible/hosts similarity index 100% rename from hosts rename to ansible/hosts diff --git a/vytvor_uzivatele.yml b/ansible/vytvor_uzivatele.yml similarity index 100% rename from vytvor_uzivatele.yml rename to ansible/vytvor_uzivatele.yml