Skip to content

Commit 2c9109b

Browse files
authored
Merge pull request #49 from IQSS/48-update-v4.14
48 update v4.14
2 parents 94d761a + f8dd11f commit 2c9109b

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
![](docs/title-composition.png)
1+
![](https://raw.githubusercontent.com/IQSS/dataverse-kubernetes/master/docs/title-composition.png)
22

33
# Running Dataverse on Kubernetes
44

5-
[![Dataverse](https://img.shields.io/badge/Dataverse-v4.13-important.svg)](https://dataverse.org)
5+
[![Dataverse](https://img.shields.io/badge/Dataverse-v4.14-important.svg)](https://dataverse.org)
66
[![Test Status](https://travis-ci.org/IQSS/dataverse-kubernetes.svg?branch=master)](https://travis-ci.org/IQSS/dataverse-kubernetes)
7-
[![Docker Hub Image](https://img.shields.io/static/v1.svg?label=image&message=dataverse-k8s&logo=docker)](https://cloud.docker.com/u/iqss/repository/docker/iqss/dataverse-k8s)
8-
[![Docker Hub Image](https://img.shields.io/static/v1.svg?label=image&message=solr-k8s&logo=docker)](https://cloud.docker.com/u/iqss/repository/docker/iqss/solr-k8s)
7+
[![Docker Hub Image](https://img.shields.io/static/v1.svg?label=image&message=dataverse-k8s&logo=docker)](https://hub.docker.com/r/iqss/dataverse-k8s)
8+
[![Docker Hub Image](https://img.shields.io/static/v1.svg?label=image&message=solr-k8s&logo=docker)](https://hub.docker.com/r/iqss/solr-k8s)
99

1010
This project aims to provide a simple to re-use example on how to run
1111
Dataverse on a Kubernetes cluster.
@@ -33,7 +33,7 @@ For production usage you really will want to fork and create your on deployments
3333
(At least as long as no Operator or Helm chart exists for this...)
3434

3535
Example usages:
36-
* [Quick demo with Minikube](docs/minikube.md)
36+
* [Quick demo with Minikube](https://github.com/IQSS/dataverse-kubernetes/blob/master/docs/minikube.md)
3737

3838
### Upgrading your installation
3939

@@ -64,7 +64,7 @@ Things like file storage, networking, DOI, etc are all *basic system settings*
6464
and can be set via system properties. For your convienience, these can be
6565
stored in a `ConfigMap`.
6666

67-
Some things need sane defaults, which can be found in [default.config](./dataverse-k8s/bin/default.config).
67+
Some things need sane defaults, which can be found in [default.config](https://github.com/IQSS/dataverse-kubernetes/blob/master/docker/dataverse-k8s/bin/default.config).
6868
You might find those usefull as an example for your personally tuned `ConfigMap`.
6969

7070
### Mapping environment variables to JVM options
@@ -160,7 +160,7 @@ Currently understood secrets in the container, mounted at `SECRETS_DIR=/opt/data
160160
5. `s3/access-key` and `s3/secret-key` - needed when you want to use S3 storage. See #28.
161161
162162
A password alias is automatically created and used for those, no need to provide
163-
those yourself. (see [default.config](./dataverse-k8s/bin/default.config))
163+
those yourself. (see [default.config](https://github.com/IQSS/dataverse-kubernetes/blob/master/docker/dataverse-k8s/bin/default.config))
164164
165165
You can of course map other parts of the secret like usernames to an environment
166166
variable like `doi_username` etc.

docker/dataverse-k8s/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM centos:7
99
LABEL maintainer="FDM FZJ <[email protected]>"
1010

1111
ARG TINI_VERSION=v0.18.0
12-
ARG VERSION=4.13
12+
ARG VERSION=4.14
1313
ARG DOMAIN=domain1
1414

1515
ENV HOME_DIR=/opt/dataverse\

docker/solr-k8s/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM solr:7.3.1
88

99
LABEL maintainer="FDM FZJ <[email protected]>"
1010

11-
ARG VERSION=4.13
11+
ARG VERSION=4.14
1212
ARG COLLECTION=collection1
1313
ENV SOLR_OPTS="-Dsolr.jetty.request.header.size=102400"\
1414
COLLECTION_DIR=/opt/solr/server/solr/${COLLECTION}\

k8s/dataverse/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: dataverse
22-
image: iqss/dataverse-k8s:4.13
22+
image: iqss/dataverse-k8s:4.14
2323
ports:
2424
- containerPort: 8080
2525
envFrom:

k8s/dataverse/jobs/bootstrap.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
spec:
88
containers:
99
- name: dv-bootstrap
10-
image: iqss/dataverse-k8s:4.13
10+
image: iqss/dataverse-k8s:4.14
1111
command: ["scripts/bootstrap-job.sh"]
1212
envFrom:
1313
- configMapRef:

k8s/dataverse/jobs/configure.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
spec:
99
containers:
1010
- name: dv-bootstrap
11-
image: iqss/dataverse-k8s:4.13
11+
image: iqss/dataverse-k8s:4.14
1212
command: ["scripts/config-job.sh"]
1313
envFrom:
1414
- configMapRef:

k8s/solr/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ spec:
1919
spec:
2020
containers:
2121
- name: solr
22-
image: iqss/solr-k8s:4.13
22+
image: iqss/solr-k8s:4.14
2323
ports:
2424
- containerPort: 8983
2525
volumeMounts:

0 commit comments

Comments
 (0)