Add osbs and registry for staging

Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
Patrick Uiterwijk 2016-04-05 17:18:31 +00:00
parent 6afb9e9f5a
commit f33d6eda0e
2 changed files with 26 additions and 0 deletions

View file

@ -483,3 +483,15 @@
destname: git
proxyurl: http://pkgs01.stg.phx2.fedoraproject.org
when: env == "staging"
- role: httpd/reverseproxy
website: osbs.fedoraproject.org
destname: osbs
proxyurl: http://localhost:10047
when: env == "staging"
- role: httpd/reverseproxy
website: registry.fedoraproject.org
destname: registry
proxyurl: http://localhost:10048
when: env == "staging"

View file

@ -480,6 +480,20 @@
sslonly: true
cert_name: "{{wildcard_cert_name}}"
- role: httpd/website
name: osbs.fedoraproject.org
server-aliases: [osbs.stg.fedoraproject.org]
sslonly: true
cert_name: "{{wildcard_cert_name}}"
when: env == "staging"
- role: httpd/website
name: registry.fedoraproject.org
server-aliases: [registry.stg.fedoraproject.org]
sslonly: true
cert_name: "{{wildcard_cert_name}}"
when: env == "staging"
# Kinda silly that we have two entries here, one for prod and one for stg.
# This is inherited from our puppet setup -- we can collapse them as soon as
# is convenient. -- threebean