From: Dan Mick Date: Wed, 19 Jul 2023 20:33:06 +0000 (-0700) Subject: Treat 8.43-IP hosts as "permanent" builders too (for ceph.io, which builds HTML) X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=59013ae987fe58ce628d9b5f54b50a9e8d10c861;p=ceph-build.git Treat 8.43-IP hosts as "permanent" builders too (for ceph.io, which builds HTML) Signed-off-by: Dan Mick --- diff --git a/ansible/examples/builder.yml b/ansible/examples/builder.yml index 4aad00857..e340633f9 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