diff --git a/inventory/group_vars/resultsdb-dev b/inventory/group_vars/resultsdb-dev index 52290b86e4..139aed8c72 100644 --- a/inventory/group_vars/resultsdb-dev +++ b/inventory/group_vars/resultsdb-dev @@ -30,7 +30,7 @@ execdb_db_port: 5432 execdb_endpoint: 'execdb' execdb_db_name: execdb_dev -external_hostname: https://taskotron-dev.fedoraproject.org +external_hostname: taskotron-dev.fedoraproject.org allowed_hosts: - 10.5.124 diff --git a/inventory/group_vars/taskotron-dev b/inventory/group_vars/taskotron-dev index c2f369f698..45a4cc031b 100644 --- a/inventory/group_vars/taskotron-dev +++ b/inventory/group_vars/taskotron-dev @@ -22,7 +22,7 @@ buildmaster_dir: /home/buildmaster/master buildslave_dir: /home/buildslave/slave master_dir: /home/buildmaster/master master_user: buildmaster -external_hostname: https://taskotron-dev.fedoraproject.org +external_hostname: taskotron-dev.fedoraproject.org execdb_server: http://resultsdb-dev01.qa.fedoraproject.org/execdb execdb_statuspush: http://resultsdb-dev01.qa.fedoraproject.org/execdb/buildbottest execdb_endpoint: execdb diff --git a/inventory/host_vars/taskotron-dev01.qa.fedoraproject.org b/inventory/host_vars/taskotron-dev01.qa.fedoraproject.org index a8179385fb..b6c4e08db5 100644 --- a/inventory/host_vars/taskotron-dev01.qa.fedoraproject.org +++ b/inventory/host_vars/taskotron-dev01.qa.fedoraproject.org @@ -21,7 +21,7 @@ virt_install_command: /usr/bin/virt-install -n {{ inventory_hostname }} -r {{ me hostname={{ inventory_hostname }}" --network=bridge=br0 --autostart --noautoconsole -public_hostname: https://taskotron-dev.fedoraproject.org +public_hostname: taskotron-dev.fedoraproject.org buildmaster: 10.5.124.181 buildslaves: - taskotron-client26 diff --git a/roles/taskotron/execdb/templates/settings.py.j2 b/roles/taskotron/execdb/templates/settings.py.j2 index 8cc965b2d6..6075840ca9 100644 --- a/roles/taskotron/execdb/templates/settings.py.j2 +++ b/roles/taskotron/execdb/templates/settings.py.j2 @@ -19,6 +19,6 @@ LOGFILR = '/var/log/execdb/execdb.log' SYSLOG_LOGGING = False STREAM_LOGGING = True -BUILDBOT_FRONTPAGE_URL = 'http://{{ external_hostname }}/taskmaster' -RESULTSDB_FRONTPAGE_URL = 'http://{{ external_hostname }}/resultsdb' -ARTIFACTS_BASE_URL = 'http://{{ external_hostname }}/artifacts/all' +BUILDBOT_FRONTPAGE_URL = 'https://{{ external_hostname }}/taskmaster' +RESULTSDB_FRONTPAGE_URL = 'https://{{ external_hostname }}/resultsdb' +ARTIFACTS_BASE_URL = 'https://{{ external_hostname }}/artifacts/all'