Skip to content

Commit

Permalink
revert ports definitions in canarieapi config (relates to #222)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Feb 17, 2023
1 parent eb4a0d4 commit cb6dfa6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
22 changes: 16 additions & 6 deletions birdhouse/config/canarie-api/docker_configuration.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ SERVICES = {
'monitoring': {
'Raven': {
'request': {
'url': 'https://${PAVICS_FQDN_PUBLIC}${TWITCHER_PROTECTED_PATH}/raven?service=WPS&version=1.0.0&request=GetCapabilities'
# FIXME: remove port by design (https://github.com/bird-house/birdhouse-deploy/issues/222)
'url': 'http://${PAVICS_FQDN}:8096/wps?service=WPS&version=1.0.0&request=GetCapabilities'
}
},
}
Expand Down Expand Up @@ -236,9 +237,10 @@ SERVICES = {
'provenance': 'https://ouranosinc.github.io/pavics-sdi/provenance/index.html'
},
'monitoring': {
'Flyingpigeon': {
'Finch': {
'request': {
'url': 'https://${PAVICS_FQDN_PUBLIC}${TWITCHER_PROTECTED_PATH}/finch?service=WPS&version=1.0.0&request=GetCapabilities'
# FIXME: remove port by design (https://github.com/bird-house/birdhouse-deploy/issues/222)
'url': 'http://${PAVICS_FQDN}:8095/?service=WPS&version=1.0.0&request=GetCapabilities'
}
},
}
Expand Down Expand Up @@ -345,6 +347,7 @@ SERVICES = {
}
}
},
# FIXME: remove (https://github.com/bird-house/birdhouse-deploy/issues/214)
'Phoenix': {
'info': {
'name': 'Phoenix',
Expand All @@ -366,14 +369,15 @@ SERVICES = {
'releasenotes': 'https://github.com/ouranosinc/pyramid-phoenix/CHANGES.rst',
'support': 'https://github.com/ouranosinc/pyramid-phoenix/issues',
'source': 'https://github.com/ouranosinc/pyramid-phoenix',
'tryme': 'https://${PAVICS_FQDN_PUBLIC}/geoserver/web/', # FIXME: original value doesn't make sense
'tryme': 'http://${PAVICS_FQDN}:8443/',
'licence': 'https://github.com/ouranosinc/pyramid-phoenix/blob/master/LICENSE.txt',
'provenance': 'https://ouranosinc.github.io/pavics-sdi/provenance/index.html'
},
"monitoring": {
"Phoenix": {
'request': {
'url': 'https://${PAVICS_FQDN_PUBLIC}/geoserver/web/' # FIXME: original value doesn't make sense
# FIXME: remove port by design (https://github.com/bird-house/birdhouse-deploy/issues/222)
'url': 'http://${PAVICS_FQDN}:8443/'
}
}
}
Expand Down Expand Up @@ -406,6 +410,7 @@ SERVICES = {
"monitoring": {
"Catalog": {
'request': {
# FIXME: remove port by design (https://github.com/bird-house/birdhouse-deploy/issues/222)
'url': 'http://${PAVICS_FQDN}:8086/pywps?service=WPS&version=1.0.0&request=GetCapabilities'
}
}
Expand Down Expand Up @@ -439,6 +444,7 @@ SERVICES = {
'monitoring': {
"Malleefowl": {
'request': {
# FIXME: remove port by design (https://github.com/bird-house/birdhouse-deploy/issues/222)
'url': 'http://${PAVICS_FQDN}:8091/wps?service=WPS&version=1.0.0&request=GetCapabilities'
}
}
Expand Down Expand Up @@ -472,11 +478,13 @@ SERVICES = {
'monitoring': {
'Finch': {
'request': {
'url': 'https://${PAVICS_FQDN_PUBLIC}${TWITCHER_PROTECTED_PATH}/finch?service=WPS&version=1.0.0&request=GetCapabilities'
# FIXME: remove port by design (https://github.com/bird-house/birdhouse-deploy/issues/222)
'url': 'http://${PAVICS_FQDN}:8095/wps?service=WPS&version=1.0.0&request=GetCapabilities'
}
},
},
},
# FIXME: remove (https://github.com/bird-house/birdhouse-deploy/issues/214)
'Solr': {
'info': {
'name': 'Solr',
Expand Down Expand Up @@ -505,6 +513,7 @@ SERVICES = {
"monitoring": {
'Solr': {
'request': {
# FIXME: remove port by design (https://github.com/bird-house/birdhouse-deploy/issues/222)
'url': 'http://${PAVICS_FQDN}:8983/solr/birdhouse/select?q=CMIP5&fq=model:MPI-ESM-MR&fq=experiment:rcp45&fq=variable:tasmax&fq=institute:MPI-M&fq=frequency:mon&wt=json'
},
'response': {
Expand Down Expand Up @@ -541,6 +550,7 @@ SERVICES = {
"monitoring": {
"Thredds": {
'request': {
# FIXME: remove port by design (https://github.com/bird-house/birdhouse-deploy/issues/222)
'url': 'http://${PAVICS_FQDN}:8083${TWITCHER_PROTECTED_PATH}/thredds/catalog.html'
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import copy
import re

_BIRDS = {
'Thredds-public': {
Expand Down Expand Up @@ -33,6 +32,7 @@ _BIRDS = {
'url': 'https://${PAVICS_FQDN_PUBLIC}${TWITCHER_PROTECTED_PATH}/hummingbird?service=WPS&version=1.0.0&request=GetCapabilities'
}
},
# FIXME: remove (https://github.com/bird-house/birdhouse-deploy/issues/214)
'ncWMS2-public': {
'request': {
'url': 'https://${PAVICS_FQDN_PUBLIC}${TWITCHER_PROTECTED_PATH}/ncWMS2/wms?SERVICE=WMS&REQUEST=GetCapabilities&VERSION=1.3.0'
Expand Down

0 comments on commit cb6dfa6

Please sign in to comment.