Skip to content

Commit

Permalink
try to use ImageStream
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Sep 15, 2017
1 parent 77b3f67 commit e1e492f
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions conf/openshift/openshift.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,39 @@
"port": 8080,
"targetPort": 8080
}
],
]
}
},
{
"kind": "ImageStream",
"apiVersion": "v1",
"metadata": {
"name": "ndslabs-dataverse"
},
"spec": {
"dockerImageRepository": "ndslabs/dataverse"
}
},
{
"kind": "DeploymentConfig",
"apiVersion": "v1",
"metadata": {
"name": "frontend",
"annotations": {
"template.alpha.openshift.io/wait-for-ready": "true"
}
},
"spec": {
"containers": [
{
"name": "dataverse-glassfish",
"image": "ndslabs/dataverse"
"name": "ndslabs-dataverse",
"image": "ndslabs-dataverse",
"ports": [
{
"containerPort": 8080,
"protocol": "TCP"
}
]
}
]
}
Expand Down

0 comments on commit e1e492f

Please sign in to comment.