Skip to content
Snippets Groups Projects
Commit 0625d18b authored by Cattani Luca's avatar Cattani Luca
Browse files

Update README.md

parent 36162cf8
No related branches found
No related tags found
No related merge requests found
...@@ -20,8 +20,8 @@ This is the directory structure ...@@ -20,8 +20,8 @@ This is the directory structure
* `/kubernetes` - Kubernetes files * `/kubernetes` - Kubernetes files
* `/kubernetes/helm` - Chart Directory. Refer to https://github.com/kubernetes/helm/blob/master/docs/charts.md#the-chart-file-structure * `/kubernetes/helm` - Chart Directory. Refer to https://github.com/kubernetes/helm/blob/master/docs/charts.md#the-chart-file-structure
* `/kubernetes/yaml` - Useful for tests, but helm is a more flexible approach * `/kubernetes/yaml` - Useful for tests, but helm is a more flexible approach
# Introduction
# Requirements # Prerequisites
* Kubernetes cluster * Kubernetes cluster
...@@ -59,4 +59,18 @@ docker pull gitlab.scientificnet.org:4567/commul/dspace/<my_image>:<my tag> ...@@ -59,4 +59,18 @@ docker pull gitlab.scientificnet.org:4567/commul/dspace/<my_image>:<my tag>
```console ```console
docker build -t gitlab.scientificnet.org:4567/commul/dspace/<my_image>:<my tag> -f Dockerfile.XX . docker build -t gitlab.scientificnet.org:4567/commul/dspace/<my_image>:<my tag> -f Dockerfile.XX .
docker push gitlab.scientificnet.org:4567/commul/dspace/<my_image>:<my tag> docker push gitlab.scientificnet.org:4567/commul/dspace/<my_image>:<my tag>
```
# Installation
## PostgreSQL
To install PostgreSQL, we need some passwords, so we need Kubernetes secrets
```console
$ kubectl -n dspace-dev create -f postgresql-secret.yaml
secret "dspace-postgresql" created
$ kubectl -n dspace-dev get secrets
NAME TYPE DATA AGE
default-token-c1pd4 kubernetes.io/service-account-token 3 4d
dspace-postgresql Opaque 1 18s
``` ```
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment