Replace all references to "environment" with "env".
It turns out that "environment" is reserved in ansible. See: http://ur1.ca/eb6gp
This commit is contained in:
parent
568e6ad0d8
commit
96610bfb4f
7 changed files with 13 additions and 15 deletions
|
@ -2,7 +2,7 @@ pam_url:
|
||||||
{
|
{
|
||||||
settings:
|
settings:
|
||||||
{
|
{
|
||||||
{% if environment == 'staging' %}
|
{% if env == 'staging' %}
|
||||||
url = "https://fas-all.phx2.fedoraproject.org:8443/"; # URI to fetch
|
url = "https://fas-all.phx2.fedoraproject.org:8443/"; # URI to fetch
|
||||||
{% elif datacenter == 'phx2' %}
|
{% elif datacenter == 'phx2' %}
|
||||||
url = "https://fas-all.stg.phx2.fedoraproject.org:8443/"; # URI to fetch
|
url = "https://fas-all.stg.phx2.fedoraproject.org:8443/"; # URI to fetch
|
||||||
|
|
|
@ -2,14 +2,12 @@
|
||||||
config = dict(
|
config = dict(
|
||||||
# Set this to dev if you're hacking on fedmsg or an app locally.
|
# Set this to dev if you're hacking on fedmsg or an app locally.
|
||||||
# Set to stg or prod if running in the Fedora Infrastructure.
|
# Set to stg or prod if running in the Fedora Infrastructure.
|
||||||
{% if environment == 'staging' %}
|
{% if env == 'staging' %}
|
||||||
environment="stg",
|
environment="stg",
|
||||||
{% else %}
|
{% else %}
|
||||||
environment="prod",
|
environment="prod",
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
# XXX - the ansible environment var is "${environment}".
|
|
||||||
|
|
||||||
# This used to be set to 1 for safety, but it turns out it was
|
# This used to be set to 1 for safety, but it turns out it was
|
||||||
# excessive. It is the number of seconds that fedmsg should sleep
|
# excessive. It is the number of seconds that fedmsg should sleep
|
||||||
# after it has initialized, but before it begins to try and send any
|
# after it has initialized, but before it begins to try and send any
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% if environment == 'staging' %}
|
{% if env == 'staging' %}
|
||||||
suffix = 'stg.phx2.fedoraproject.org'
|
suffix = 'stg.phx2.fedoraproject.org'
|
||||||
non_phx_suffix = 'stg.fedoraproject.org'
|
non_phx_suffix = 'stg.fedoraproject.org'
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -28,7 +28,7 @@ config = dict(
|
||||||
"tcp://releng01.%s:3000" % suffix,
|
"tcp://releng01.%s:3000" % suffix,
|
||||||
"tcp://releng01.%s:3001" % suffix,
|
"tcp://releng01.%s:3001" % suffix,
|
||||||
],
|
],
|
||||||
{% if not environment == 'staging' %}
|
{% if not env == 'staging' %}
|
||||||
"bodhi.app03": [
|
"bodhi.app03": [
|
||||||
"tcp://app03.%s:300%i" % (suffix, i)
|
"tcp://app03.%s:300%i" % (suffix, i)
|
||||||
for i in range(8)
|
for i in range(8)
|
||||||
|
@ -68,7 +68,7 @@ config = dict(
|
||||||
"tcp://fas01.%s:30%02i" % (suffix, i)
|
"tcp://fas01.%s:30%02i" % (suffix, i)
|
||||||
for i in range(32)
|
for i in range(32)
|
||||||
],
|
],
|
||||||
{% if environment != 'staging' %}
|
{% if env != 'staging' %}
|
||||||
"fas.fas02": [
|
"fas.fas02": [
|
||||||
"tcp://fas02.%s:30%02i" % (suffix, i)
|
"tcp://fas02.%s:30%02i" % (suffix, i)
|
||||||
for i in range(32)
|
for i in range(32)
|
||||||
|
@ -83,7 +83,7 @@ config = dict(
|
||||||
"tcp://packages01.%s:30%02i" % (suffix, i)
|
"tcp://packages01.%s:30%02i" % (suffix, i)
|
||||||
for i in range(32)
|
for i in range(32)
|
||||||
],
|
],
|
||||||
{% if environment != 'staging' %}
|
{% if env != 'staging' %}
|
||||||
"fedoratagger.packages02": [
|
"fedoratagger.packages02": [
|
||||||
"tcp://packages02.%s:30%02i" % (suffix, i)
|
"tcp://packages02.%s:30%02i" % (suffix, i)
|
||||||
for i in range(32)
|
for i in range(32)
|
||||||
|
@ -92,7 +92,7 @@ config = dict(
|
||||||
"busmon_consumers.busgateway01": [
|
"busmon_consumers.busgateway01": [
|
||||||
"tcp://busgateway01.%s:3000" % suffix,
|
"tcp://busgateway01.%s:3000" % suffix,
|
||||||
],
|
],
|
||||||
{% if environment != 'staging' %}
|
{% if env != 'staging' %}
|
||||||
"supybot.value03": [
|
"supybot.value03": [
|
||||||
"tcp://value03.%s:3000" % suffix,
|
"tcp://value03.%s:3000" % suffix,
|
||||||
],
|
],
|
||||||
|
@ -109,7 +109,7 @@ config = dict(
|
||||||
for i in range(6)
|
for i in range(6)
|
||||||
],
|
],
|
||||||
|
|
||||||
{% if environment != 'staging' %}
|
{% if env != 'staging' %}
|
||||||
# fedorahosted trac runs as 4 processes with 4 threads each.
|
# fedorahosted trac runs as 4 processes with 4 threads each.
|
||||||
"trac.hosted03": [
|
"trac.hosted03": [
|
||||||
"tcp://hosted03.%s:30%02i" % (vpn_suffix, i)
|
"tcp://hosted03.%s:30%02i" % (vpn_suffix, i)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% if environment == 'staging' %}
|
{% if env == 'staging' %}
|
||||||
suffix = 'stg.phx2.fedoraproject.org'
|
suffix = 'stg.phx2.fedoraproject.org'
|
||||||
non_phx_suffix = 'stg.fedoraproject.org'
|
non_phx_suffix = 'stg.fedoraproject.org'
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -16,7 +16,7 @@ config = dict(
|
||||||
"tcp://app02.%s:301%i" % (suffix, i)
|
"tcp://app02.%s:301%i" % (suffix, i)
|
||||||
for i in range(6)
|
for i in range(6)
|
||||||
],
|
],
|
||||||
{% if not environment == 'staging' %}
|
{% if not env == 'staging' %}
|
||||||
"pkgdb.app03": [
|
"pkgdb.app03": [
|
||||||
"tcp://app03.%s:301%i" % (suffix, i)
|
"tcp://app03.%s:301%i" % (suffix, i)
|
||||||
for i in range(6)
|
for i in range(6)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% if environment == 'staging' %}
|
{% if env == 'staging' %}
|
||||||
suffix = 'stg.phx2.fedoraproject.org'
|
suffix = 'stg.phx2.fedoraproject.org'
|
||||||
non_phx_suffix = 'stg.fedoraproject.org'
|
non_phx_suffix = 'stg.fedoraproject.org'
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
{% if environment == 'staging' %}
|
{% if env == 'staging' %}
|
||||||
suffix = "stg.phx2.fedoraproject.org"
|
suffix = "stg.phx2.fedoraproject.org"
|
||||||
app_hosts = [
|
app_hosts = [
|
||||||
"app01.stg.phx2.fedoraproject.org",
|
"app01.stg.phx2.fedoraproject.org",
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
---
|
---
|
||||||
freezes: false
|
freezes: false
|
||||||
environment: staging
|
env: staging
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue