From 59013ae987fe58ce628d9b5f54b50a9e8d10c861 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Wed, 19 Jul 2023 13:33:06 -0700 Subject: [PATCH] Treat 8.43-IP hosts as "permanent" builders too (for ceph.io, which builds HTML) Signed-off-by: Dan Mick --- ansible/examples/builder.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/examples/builder.yml b/ansible/examples/builder.yml index 4aad0085..e340633f 100644 --- a/ansible/examples/builder.yml +++ b/ansible/examples/builder.yml @@ -322,14 +322,14 @@ - set_fact: permanent: true with_items: "{{ ansible_all_ipv4_addresses }}" - when: "item.startswith('172.21.')" + when: "item.startswith('172.21.') or item.startswith('8.43')" tags: always ## Let's make sure nodename gets set using our Sepia hostnames if the builder's in Sepia - set_fact: nodename: "{{ ansible_hostname }}" with_items: "{{ ansible_all_ipv4_addresses }}" - when: "item.startswith('172.21.')" + when: "item.startswith('172.21.') or item.startswith('8.43')" tags: always ## EPHEMERAL SLAVE TASKS -- 2.39.5