Skip to content

Commit a3c32be

Browse files
authored
Merge pull request #61 from bodom0015/NDS-623
NDS-623: Many specs with HTTP ports are missing context paths
2 parents 8b3072b + 86a9759 commit a3c32be

37 files changed

+71
-37
lines changed

clowder/clowder-pycharm-xpra.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"ports": [
1717
{
1818
"port": 10000,
19-
"protocol": "http"
19+
"protocol": "http",
20+
"contextPath": "/"
2021
}
2122
],
2223
"depends": [

clowder/clowder.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@
8585
"ports": [
8686
{
8787
"port": 9000,
88-
"protocol": "http"
88+
"protocol": "http",
89+
"contextPath": "/"
8990
}
9091
],
9192
"resourceLimits": {

dataverse/dataverse.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ports": [
1313
{
1414
"port": 8080,
15-
"protocol": "http"
15+
"protocol": "http",
16+
"contextPath": "/"
1617
}
1718
],
1819
"depends": [

dataverse/dvicat.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"ports": [
1212
{
1313
"port": 1247,
14-
"protocol": "tcp"
14+
"protocol": "tcp",
15+
"contextPath": "/"
1516
}
1617
],
1718
"config": [

dataverse/rserve.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"tags": ["4.2.3", "latest"]
1010
},
1111
"ports": [
12-
{ "port": 6311, "protocol": "tcp" }
12+
{ "port": 6311, "protocol": "tcp", "contextPath": "/" }
1313
],
1414
"resourceLimits": {
1515
"cpuMax": 200,

dataverse/solr.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"tags": ["4.2.3", "latest"]
1010
},
1111
"ports": [
12-
{ "port": 8983, "protocol": "http" }
12+
{ "port": 8983, "protocol": "http", "contextPath": "/" }
1313
],
1414
"volumeMounts":[
1515
{ "mountPath": "/usr/local/solr-4.6.0/example/solr/collection1/data" }

dataverse/tworavens.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"tags": ["latest", "4.2.3"]
1212
},
1313
"ports": [
14-
{ "port": 80, "protocol": "http" }
14+
{ "port": 80, "protocol": "http", "contextPath": "/" }
1515
],
1616
"resourceLimits": {
1717
"cpuMax": 200,

devenvs/cloud9-cpp.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ports": [
1313
{
1414
"port": 80,
15-
"protocol": "http"
15+
"protocol": "http",
16+
"contextPath": "/"
1617
}
1718
],
1819
"volumeMounts":[

devenvs/cloud9-docker.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ports": [
1313
{
1414
"port": 80,
15-
"protocol": "http"
15+
"protocol": "http",
16+
"contextPath": "/"
1617
}
1718
],
1819
"volumeMounts":[

devenvs/cloud9-go.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ports": [
1313
{
1414
"port": 80,
15-
"protocol": "http"
15+
"protocol": "http",
16+
"contextPath": "/"
1617
}
1718
],
1819
"volumeMounts":[

devenvs/cloud9-java.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ports": [
1313
{
1414
"port": 80,
15-
"protocol": "http"
15+
"protocol": "http",
16+
"contextPath": "/"
1617
}
1718
],
1819
"volumeMounts":[

devenvs/cloud9-nodejs.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ports": [
1313
{
1414
"port": 80,
15-
"protocol": "http"
15+
"protocol": "http",
16+
"contextPath": "/"
1617
}
1718
],
1819
"volumeMounts":[

devenvs/cloud9-php.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ports": [
1313
{
1414
"port": 80,
15-
"protocol": "http"
15+
"protocol": "http",
16+
"contextPath": "/"
1617
}
1718
],
1819
"volumeMounts":[

devenvs/cloud9-python.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"ports": [
1414
{
1515
"port": 80,
16-
"protocol": "http"
16+
"protocol": "http",
17+
"contextPath": "/"
1718
}
1819
],
1920
"volumeMounts":[

devenvs/pycharm-xpra.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"ports": [
1414
{
1515
"port": 10000,
16-
"protocol": "http"
16+
"protocol": "http",
17+
"contextPath": "/"
1718
}
1819
],
1920
"volumeMounts": [

devenvs/vimpy.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"ports": [
1414
{
1515
"port": 3000,
16-
"protocol": "http"
16+
"protocol": "http",
17+
"contextPath": "/"
1718
}
1819
],
1920
"volumeMounts":[

docker/docker.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"ports": [
1313
{
1414
"port": 3000,
15-
"protocol": "http"
15+
"protocol": "http",
16+
"contextPath": "/"
1617
}
1718
],
1819
"display": "stack",

dspace/dspace.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@
5858
"ports": [
5959
{
6060
"port": 8080,
61-
"protocol": "http"
61+
"protocol": "http",
62+
"contextPath": "/"
6263
}
6364
],
6465
"repositories": [

fedora/commons.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"ports": [
2121
{
2222
"port": 8080,
23-
"protocol": "http"
23+
"protocol": "http",
24+
"contextPath": "/"
2425
}
2526
],
2627
"repositories": [

girder/girder.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"ports": [
2727
{
2828
"port": 8080,
29-
"protocol": "http"
29+
"protocol": "http",
30+
"contextPath": "/"
3031
}
3132
],
3233
"repositories": [

hydra/hydra.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@
3939
"ports": [
4040
{
4141
"port": 3000,
42-
"protocol": "http"
42+
"protocol": "http",
43+
"contextPath": "/"
4344
}
4445
],
4546
"readinessProbe": {

hydra/sufia.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666
"ports": [
6767
{
6868
"port": 3000,
69-
"protocol": "http"
69+
"protocol": "http",
70+
"contextPath": "/"
7071
}
7172
],
7273
"readinessProbe": {

iqvoc/iqvoc.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"ports": [
1515
{
1616
"port": 3000,
17-
"protocol": "http"
17+
"protocol": "http",
18+
"contextPath": "/"
1819
}
1920
],
2021
"repositories": [

irods/cloudbrowserui.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"ports": [
1414
{
1515
"port": 80,
16-
"protocol": "http"
16+
"protocol": "http",
17+
"contextPath": "/"
1718
}
1819
],
1920
"depends": [

irods/icat.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
},
1717
{
1818
"port": 8080,
19-
"protocol": "http"
19+
"protocol": "http",
20+
"contextPath": "/"
2021
}
2122
],
2223
"config": [

jenkins/jenkins.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"ports": [
1818
{
1919
"port": 8080,
20-
"protocol": "http"
20+
"protocol": "http",
21+
"contextPath": "/"
2122
},
2223
{
2324
"port": 50000,

jupyter/dsnotebook.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"ports": [
2424
{
2525
"port": 8888,
26-
"protocol": "http"
26+
"protocol": "http",
27+
"contextPath": "/"
2728
}
2829
],
2930
"repositories": null,

jupyter/jupyterlab.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"ports": [
1515
{
1616
"port": 8888,
17-
"protocol": "http"
17+
"protocol": "http",
18+
"contextPath": "/"
1819
}
1920
],
2021
"repositories": [

jupyter/minimal.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"ports": [
2424
{
2525
"port": 8888,
26-
"protocol": "http"
26+
"protocol": "http",
27+
"contextPath": "/"
2728
}
2829
],
2930
"repositories": [

ontowiki/ontowiki.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"ports": [
1717
{
1818
"port": 80,
19-
"protocol": "http"
19+
"protocol": "http",
20+
"contextPath": "/"
2021
}
2122
],
2223
"repositories": [

protege/webprotege.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"ports": [
2121
{
2222
"port": 8080,
23-
"protocol": "http"
23+
"protocol": "http",
24+
"contextPath": "/"
2425
}
2526
],
2627
"repositories": [

redis/redis.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"ports": [
1717
{
1818
"port": 6379,
19-
"protocol": "http"
19+
"protocol": "http",
20+
"contextPath": "/"
2021
}
2122
],
2223
"readinessProbe": {

rstudio/rstudio.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"ports": [
1616
{
1717
"port": 8787,
18-
"protocol": "http"
18+
"protocol": "http",
19+
"contextPath": "/"
1920
}
2021
],
2122
"repositories": [

solr/solr6.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"ports": [
3232
{
3333
"port": 8983,
34-
"protocol": "http"
34+
"protocol": "http",
35+
"contextPath": "/"
3536
}
3637
],
3738
"readinessProbe": {

system/chisel.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"ports": [
2424
{
2525
"port": 8080,
26-
"protocol": "http"
26+
"protocol": "http",
27+
"contextPath": "/"
2728
}
2829
],
2930
"repositories": [

system/cloudcmd.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"ports": [
2020
{
2121
"port": 8000,
22-
"protocol": "http"
22+
"protocol": "http",
23+
"contextPath": "/"
2324
}
2425
],
2526
"readinessProbe": {

toolserver/toolserver.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"ports": [
1818
{
1919
"port": 8082,
20-
"protocol": "http"
20+
"protocol": "http",
21+
"contextPath": "/"
2122
}
2223
],
2324
"repositories": null,

0 commit comments

Comments
 (0)