Switch bridge to bridge01.opendev.org

This switches the bridge name to bridge01.opendev.org.

The testing path is updated along with some final references still in
testinfra.

The production jobs are updated in add-bastion-host, and will have the
correct setup on the new host after the dependent change.

Everything else is abstracted behind the "bastion" group; the entry is
changed here which will make all the relevant playbooks run on the new
host.

Depends-On:  https://review.opendev.org/c/opendev/base-jobs/+/862551
Change-Id: I21df81e45a57f1a4aa5bc290e9884e6dc9b4ca13
This commit is contained in:
Ian Wienand
2022-10-13 08:18:59 +11:00
parent 9473b1e108
commit 102534fdb8
6 changed files with 13 additions and 13 deletions

View File

@@ -15,7 +15,7 @@
import pytest
testinfra_hosts = ['adns-letsencrypt.opendev.org',
'bridge.openstack.org',
'bridge01.opendev.org',
'letsencrypt01.opendev.org',
'letsencrypt02.opendev.org']
@@ -141,7 +141,7 @@ def test_acme_sh_config(host):
assert config.contains("^ACCOUNT_EMAIL=le-test@opendev.org")
def test_certcheck_config(host, zuul_data):
if host.backend.get_hostname() != 'bridge.openstack.org':
if not host.backend.get_hostname().startswith('bridge'):
pytest.skip()
if zuul_data['extra']['zuul']['job'] != 'system-config-run-letsencrypt':