Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • commul/docker/clarin-dspace
1 result
Show changes
Commits on Source (9)
...@@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed ### Removed
### Fixed ### Fixed
## [1.3.3] - 2019-07-23
### Changed
- adapted healthcheck "cronjob" to force exit in case it hangs for some reason (#60)
## [1.3.2] - 2019-06-27 ## [1.3.2] - 2019-06-27
### Added ### Added
...@@ -99,7 +105,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -99,7 +105,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
This is the first release. It all starts here. This is the first release. It all starts here.
[Unreleased]:https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3.2...HEAD [Unreleased]:https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3.3...HEAD
[1.3.3]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3.2...v1.3.3
[1.3.2]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3.1...v1.3.2 [1.3.2]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3.1...v1.3.2
[1.3.1]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3...v1.3.1 [1.3.1]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3...v1.3.1
[1.3]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.2.2...v1.3 [1.3]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.2.2...v1.3
......
...@@ -10,15 +10,16 @@ ...@@ -10,15 +10,16 @@
- [ ] `git checkout -b v$VERSION_NUMBER $HASHID -- .` - [ ] `git checkout -b v$VERSION_NUMBER $HASHID -- .`
The $HASHID being the commit were the last merge from stable happened (before clarindev2clarin.sh changes were committed) The $HASHID being the commit were the last merge from stable happened (before clarindev2clarin.sh changes were committed)
- [ ] `git merge --no-ff stable` - [ ] `git merge --no-ff stable`
- [ ] resolve conflicts and commit - [ ] resolve conflicts (though there shouldn't be any) and commit
- [ ] Change the version number and the registry branch of the images in all deployment yaml files - [ ] Change the version number and the registry branch of the images in all deployment yaml files
- [ ] Run the clarindev2clarin.sh script - [ ] Run the clarindev2clarin.sh script
- [ ] `git commit -a ` - [ ] `git commit -a `
- [ ] `git checkout production` - [ ] `git checkout production`
- [ ] `git merge v1.3-$VERSION_NUMBER` - [ ] `git merge v1.3-$VERSION_NUMBER`
- [ ] resolve conflicts and commit - [ ] resolve conflicts and commit
- [ ] `git tag -a $VERSION_NUMBER -s -u $GPG_ID_HASH` - [ ] `git tag -a $VERSION_NUMBER -s (-u $GPG_ID_HASH)` defaults to your default GPG key
- [ ] `git push --all - [ ] `git branch -d $VERSION_NUMBER`
- [ ] `git push --all`
- [ ] `git push --tags` - [ ] `git push --tags`
- [ ] `cd dockerfiles` - [ ] `cd dockerfiles`
- [ ] `./release.sh $VERSION_NUMBER production` - [ ] `./release.sh $VERSION_NUMBER production`
......
...@@ -20,13 +20,13 @@ make init_statistics ...@@ -20,13 +20,13 @@ make init_statistics
# https://ubuntuforums.org/showthread.php?t=979694 # https://ubuntuforums.org/showthread.php?t=979694
# Start process in the background and send its output to file descriptor 3 # Start process in the background and send its output to file descriptor 3
exec 3< <(while (true); do exec 3< <(while (true); do
make update_oai timeout -k 30 300 make update_oai
make update_statistics timeout -k 30 300 make update_statistics
make update_sitemap timeout -k 30 300 make update_sitemap
make lift_embargos timeout -k 30 300 make lift_embargos
make update_openaire_cache timeout -k 30 300 make update_openaire_cache
make update_discovery timeout -k 30 300 make update_discovery
make send_info timeout -k 30 300 make send_info
echo "INIT DONE." echo "INIT DONE."
sleep 86400 sleep 86400
done) done)
......
...@@ -50,7 +50,7 @@ spec: ...@@ -50,7 +50,7 @@ spec:
secretKeyRef: secretKeyRef:
key: mail.pass key: mail.pass
name: dspace-secrets name: dspace-secrets
image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/dspace:1.3.2 image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/dspace:1.3.3
name: clarin-dspace name: clarin-dspace
imagePullPolicy: Always imagePullPolicy: Always
ports: ports:
......
...@@ -20,7 +20,7 @@ spec: ...@@ -20,7 +20,7 @@ spec:
io.kompose.service: nginx io.kompose.service: nginx
spec: spec:
containers: containers:
- image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/nginx:1.3.2 - image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/nginx:1.3.3
imagePullPolicy: Always imagePullPolicy: Always
name: clarin-nginx name: clarin-nginx
ports: ports:
......
...@@ -48,7 +48,7 @@ spec: ...@@ -48,7 +48,7 @@ spec:
secretKeyRef: secretKeyRef:
key: dspace.utils.name key: dspace.utils.name
name: dspace-secrets name: dspace-secrets
image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/postgres:1.3.2 image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/postgres:1.3.3
imagePullPolicy: Always imagePullPolicy: Always
name: clarin-postgres name: clarin-postgres
resources: {} resources: {}
......