forked from IQSS/dataverse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stub out Docker and OpenShift files IQSS#4040
- Loading branch information
Showing
9 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# See `conf/docker` for Docker images |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
echo "TODO: Build docker images and push to DockerHub." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Glassfish and Dataverse in one Docker image, as suggested by danmcp. | ||
# | ||
# TODO: Start with the Dataverse 4.2.3 version at https://github.com/pdurbin/ndslabs-dataverse/blob/v4.2.3.1/dockerfiles/dataverse/Dockerfile | ||
# | ||
# TODO: Once we get Dataverse 4.2.3 working, we can try Dataverse 4.7 from https://github.com/pdurbin/ndslabs-dataverse/blob/upgrade-4.7/dockerfiles/dataverse/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# PostgreSQL for Dataverse (but consider switching to the image from CentOS) | ||
# | ||
# See also conf/docker/dataverse-glassfish/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Solr for Dataverse | ||
# | ||
# See the note about Dataverse 4.2.3 vs. 4.7 at conf/docker/dataverse-glassfish/Dockerfile | ||
# | ||
# Note that there is a separate Dockerfile we can start with: | ||
# | ||
# Dataverse 4.2.3: https://github.com/pdurbin/ndslabs-dataverse/blob/v4.2.3.1/dockerfiles/solr/Dockerfile | ||
# Dataverse 4.7: https://github.com/pdurbin/ndslabs-dataverse/blob/upgrade-4.7/dockerfiles/solr/Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"kind": "Project", | ||
"apiVersion": "v1", | ||
"metadata": { | ||
"name": "dataverse", | ||
"creationTimestamp": null, | ||
"labels": { | ||
"name": "dataverse" | ||
}, | ||
"annotations": { | ||
"openshift.io/description": "Dataverse is open source research data repository software: https://dataverse.org", | ||
"openshift.io/display-name": "Dataverse" | ||
} | ||
}, | ||
"spec": { | ||
"containers": [ | ||
{ | ||
"name": "dataverse-glassfish", | ||
"image": "ndslabs/dataverse", | ||
"ports": [ | ||
{ | ||
"containerPort": 8080, | ||
"protocol": "TCP" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "dataverse-solr", | ||
"image": "ndslabs/dataverse-solr", | ||
"ports": [ | ||
{ | ||
"containerPort": 8983, | ||
"protocol": "TCP" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"status": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,4 @@ Installation Guide | |
geoconnect | ||
shibboleth | ||
oauth2 | ||
openshift |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
================================= | ||
Installing Dataverse on OpenShift | ||
================================= | ||
|
||
.. contents:: |toctitle| | ||
:local: | ||
|
||
Familiarize Yourself with OpenShift | ||
----------------------------------- | ||
|
||
https://docs.openshift.com/online/getting_started/index.html | ||
|
||
Create OpenShift Account | ||
------------------------ | ||
|
||
Create Project | ||
-------------- | ||
|
||
Import YAML/JSON | ||
---------------- | ||
|
||
Upload ``conf/openshift/openshift.json``. | ||
|
||
FIXME: Getting "cannot create projects at the cluster scope" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters