Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
clarin-dspace
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
commul
docker
clarin-dspace
Commits
482f7e13
Commit
482f7e13
authored
7 years ago
by
Cattani Luca
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of gitlab.scientificnet.org:commul/dspace
parents
38be5c11
152ac546
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+77
-4
77 additions, 4 deletions
README.md
with
77 additions
and
4 deletions
README.md
+
77
−
4
View file @
482f7e13
...
...
@@ -20,8 +20,8 @@ This is the directory structure
*
`/kubernetes`
- Kubernetes files
*
`/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
#
Requirement
s
# Introduction
#
Prerequisite
s
*
Kubernetes cluster
...
...
@@ -38,8 +38,14 @@ This is the directory structure
# How to use it
## Workflow
First of all, check if a docker image already exist.
If exist, pull it, otherwise you neeed to build one.
First of all, check if a docker image already exists.
If it exist, pull, otherwise, you need to build one.
If necessary create a
[
personal token
](
https://gitlab.scientificnet.org/profile/personal_access_tokens
)
and login into GitLab Registry.
```
console
docker login gitlab.scientificnet.org:4567
```
### Use existing Docker image
```
console
docker image ls -a gitlab.scientificnet.org:4567/commul/dspace/*
...
...
@@ -53,4 +59,71 @@ docker pull gitlab.scientificnet.org:4567/commul/dspace/<my_image>:<my tag>
```
console
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>
```
# Installation
Provide gitlab credentials
```
console
$
kubectl
-n
dspace-dev create
-f
gitlab-scientificnet-org-registry.yaml
```
```
console
$
kubectl
-n
dspace-dev create
-f
rbd-secret.yaml
```
## 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
```
```
console
$
kubectl
-n
dspace-dev create
-f
dspace-secrets.yaml
secret "dspace-secrets" created
```
```
console
$
kubectl
-n
dspace-dev get secrets
NAME TYPE DATA AGE
ceph-rbd-secret kubernetes.io/rbd 1 14m
default-token-c1pd4 kubernetes.io/service-account-token 3 4d
dspace-postgresql Opaque 1 1h
dspace-secrets Opaque 1 1m
gitlab-scientificnet-org-registry kubernetes.io/dockerconfigjson 1 46m
```
Next, create a RBD Claim
```
console
$
kubectl
-n
dspace-dev create
-f
postgresql-pvc.yaml
persistentvolumeclaim "dspace-postgresql" created
$
kubectl
-n
dspace-dev get pvc
NAME STATUS VOLUME CAPACITY ACCESSMODES STORAGECLASS AGE
dspace-postgresql Bound pvc-610c358d-a518-11e7-b21c-b60483de6a40 8Gi RWO auto 2s
```
Ok, now we are ready to deploy our PostgreSQL!
```
console
$
kubectl
-n
dspace-dev create
-f
postgresql.yaml
$
kubectl
-n
dspace-dev get po
NAME READY STATUS RESTARTS AGE
dspace-postgresql-1806947503-cj077 0/1 ContainerCreating 0 2s
$
kubectl
-n
dspace-dev get po
NAME READY STATUS RESTARTS AGE
dspace-postgresql-1806947503-qw8q4 0/1 Running 0 9s
$
kubectl
-n
dspace-dev get po
NAME READY STATUS RESTARTS AGE
dspace-postgresql-1806947503-qw8q4 1/1 Running 0 46s
```
when the container will be in running
```
console
$
kubectl
-n
dspace-dev
exec
-it
dspace-postgresql-1806947503-qw8q4 bash
root@dspace-postgresql-1806947503-qw8q4:/#
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment