Compare commits

...

2 commits

Author SHA1 Message Date
ce28c8d850 use cloudinit-wait from git 2023-04-14 11:11:35 +02:00
8917e3e791 change VM domain name 2023-04-13 18:06:53 +02:00
4 changed files with 27 additions and 39 deletions

View file

@ -1,5 +1,5 @@
[defaults]
roles_path=roles
roles_path=~/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:roles
inventory=inventory
vault_password_file=util/secret-service-client.sh
interpreter_python=/usr/bin/python3

View file

@ -1,27 +1,12 @@
---
- hosts: all
- name: Wait for cloud-init to finish
hosts: all
gather_facts: no
roles:
- 'cloudinit-wait'
- name: Install services
hosts: all
pre_tasks:
- name: Wait for host to come up
tags: always
block:
- name: Wait for SSH connection
wait_for:
state: started
port: 22
host: "192.168.30.7"
timeout: 300
connect_timeout: 300
search_regex: OpenSSH
delegate_to: localhost
- name: Wait for cloud-init to finish
command:
cmd: cloud-init status --wait
register: cloudinit
changed_when: "'..' in cloudinit.stdout"
- name: Gather facts
setup:
- name: Copy resolv.conf
copy:
src: resolv.conf
@ -38,7 +23,6 @@
pkg:
- qemu-guest-agent
- dnsutils
roles:
- {role: 'dnsmasq', tags: 'dnsmasq'}
- {role: 'nsd', tags: 'nsd'}

3
ansible/requirements.yml Normal file
View file

@ -0,0 +1,3 @@
- name: cloudinit-wait
src: https://git.pim.kunis.nl/pim/ansible-role-cloudinit-wait
scm: git

View file

@ -21,6 +21,7 @@ provider "libvirt" {
module "vm" {
source = "git::https://git.pim.kunis.nl/home/tf-modules.git//debian"
name = "hermes"
domain_name = "tf-hermes"
use_host_cert = false
fixed_address = "192.168.30.7/24"
mac = "CA:FE:C0:FF:EE:07"