diff --git a/CHANGELOG.md b/CHANGELOG.md
index e9ae4e12eaeb0519db85a77c4dac4bedcbfc5598..4f7af8717c71e5c2fd41fdd044c603bd5b4de291 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ### Removed
 ### Fixed
 
+## [1.3.2] - 2019-06-27
+
+### Added
+
+- added liveness probes for DSpace and nginx pods (#53)
+- added DSpace cronjobs to generate statistics, solr index etc. (#48)
+
+### Changed
+
+- upgraded DSpace to 2019.01 (#56)
+
 ## [1.3.1] - 2019-02-25
 
 ### Fixed
@@ -88,7 +99,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 
 This is the first release. It all starts here.
 
-[Unreleased]:https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3.1...HEAD
+[Unreleased]:https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.3.2...HEAD
+[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]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.2.2...v1.3
 [1.2.2]: https://gitlab.inf.unibz.it/commul/docker/clarin-dspace/compare/v1.2...v1.2.2
diff --git a/DEPLOYMENT.md b/DEPLOYMENT.md
index 4c27d08b583b8eb424e7e68f1f1ec698caab83c8..c58e30c86b8d28f8fd2cf25a76abf155782a8a89 100644
--- a/DEPLOYMENT.md
+++ b/DEPLOYMENT.md
@@ -4,12 +4,11 @@
 - [ ] Commit to master to make sure that the master branch is clean and all commits are pushed to origin
 - [ ] `git checkout stable`
 - [ ] `git merge --no-ff master`
-- [ ] (Optional) You can now deploy stable to kommul-dev (`./release.sh $VERSION_NUMBER-RC-$RCNUMBER`)
+- [ ] (Optional) You can now deploy stable to dspace-dev (`./release.sh $VERSION_NUMBER-RC-$RCNUMBER`)
 - [ ] Make sure that the stable branch is clean and all commits are pushed to origin
 - [ ] `git checkout production`
-- [ ] `git checkout $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)
-- [ ] `git checkout -b v1.3-$VERSION_NUMBER`
 - [ ] `git merge --no-ff stable`
 - [ ] resolve conflicts and commit
 - [ ] Change the version number and the registry branch of the images in all deployment yaml files
diff --git a/clarin-dev2clarin.sh b/clarin-dev2clarin.sh
index f64bb0cc776625030891cc35ea21f08ae9d9017f..aa543fc805742264a8e64654d790a6437ac4e20a 100755
--- a/clarin-dev2clarin.sh
+++ b/clarin-dev2clarin.sh
@@ -25,4 +25,4 @@ echo "Modified all files to point to clarin.eurac.edu instead of clarin-dev.eura
 
 # adapt namespace in kubernetes yaml files
 sed -i 's/dspace-dev/dspace/' kubernetes/*.yaml
-perl -pi -e 's/clarin-dev/clarin/g' kubernetes/dspace-ingress.yaml
+perl -pi -e 's/clarin-dev/clarin/g' kubernetes/{dspace-ingress,dspace-deployment,nginx-deployment}.yaml
diff --git a/dockerfiles/Dockerfile.dspace b/dockerfiles/Dockerfile.dspace
index 0167fcfe9f8f8aeb0fd5375094235f74f6da5543..a2c0fccca4ceb4224c5490ea1b22db8ab7810428 100644
--- a/dockerfiles/Dockerfile.dspace
+++ b/dockerfiles/Dockerfile.dspace
@@ -86,7 +86,9 @@ RUN make new_deploy
 
 # DEBUG: to be able to access tomcat manager through browser
 # COPY commul-customization/tomcat-users.xml /opt/tomcat8/conf/
+# adapt some config files
 RUN perl -pi -e 's/#useProxies = true/useProxies = true/' /opt/lindat-dspace/installation/config/dspace.cfg
+RUN perl -pi -e 's#    (?s).*org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe.*#    (?s).*org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe.*,\\\n    (?s).*user-agent=.kube-probe.*#' /opt/lindat-dspace/installation/config/modules/lr.cfg
 
 # set up handle server
 COPY commul-customization/hdl-setup.tmp /tmp/
diff --git a/dockerfiles/commul-customization/entrypoint.sh b/dockerfiles/commul-customization/entrypoint.sh
index c7890a495c37630858d37d45fc766d2d9890e2f1..fe0ca4601cd017ac0f5e73d291b9a78ac53a44f2 100644
--- a/dockerfiles/commul-customization/entrypoint.sh
+++ b/dockerfiles/commul-customization/entrypoint.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 # replace environment variables in config files
 perl -pi -e 's/\$\{DSPACE_USER\}/$ENV{DSPACE_USER}/; s/\$\{DSPACE_PASSWORD\}/$ENV{DSPACE_PASSWORD}/; s/\$\{MAIL_USER\}/$ENV{MAIL_USER}/; s/\$\{MAIL_PASSWORD\}/$ENV{MAIL_PASSWORD}/; s/\$\{DSPACE_DBNAME\}/$ENV{DSPACE_DBNAME}/; s/\$\{DSPACE_UTILSDBNAME\}/$ENV{DSPACE_UTILSDBNAME}/;' /opt/repository/sources/dspace/local.properties
@@ -16,9 +16,32 @@ perl -pi -e 's/\$\{HANDLE_USER\}/$ENV{HANDLE_USER}/; s/\$\{HANDLE_PASSWORD\}/$EN
 /opt/tomcat8/bin/startup.sh
 cd /opt/repository/workspace/scripts
 make init_statistics
-make update_discovery
-make update_oai
-/opt/lindat-dspace/installation/bin/dspace generate-sitemaps
+
+# https://ubuntuforums.org/showthread.php?t=979694
+# Start process in the background and send its output to file descriptor 3
+exec 3< <(while (true); do
+    make update_oai
+    make update_statistics
+    make update_sitemap
+    make lift_embargos
+    make update_openaire_cache
+    make update_discovery
+    make send_info
+    echo "INIT DONE."
+    sleep 86400
+done)
+
+# Read the output of the process line by line until one line contains Ready
+while read line; do
+   case "$line" in
+   "INIT DONE.")
+      break
+      ;;
+   esac
+done <&3
+
+# Close the file descriptor
+exec <&3 3<&-
 /opt/tomcat8/bin/shutdown.sh -force
 
 # start tomcat
diff --git a/kubernetes/dspace-deployment.yaml b/kubernetes/dspace-deployment.yaml
index 1239204852fb1d48903133a30215c1f128e1cb7b..50126fd431caed5ad0168e507ea63391d6f75b9b 100644
--- a/kubernetes/dspace-deployment.yaml
+++ b/kubernetes/dspace-deployment.yaml
@@ -50,7 +50,7 @@ spec:
             secretKeyRef:
               key: mail.pass
               name: dspace-secrets
-        image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/dspace:1.3.1
+        image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/dspace:1.3.2
         name: clarin-dspace
         imagePullPolicy: Always
         ports:
@@ -62,6 +62,15 @@ spec:
         volumeMounts:
         - mountPath: /opt/lindat-dspace/installation/assetstore
           name: dspace-assetstore
+        livenessProbe:
+          httpGet:
+            host: clarin.eurac.edu
+            path: /repository/xmlui/
+            port: 443
+            scheme: HTTPS
+          initialDelaySeconds: 600
+          periodSeconds: 15
+          timeoutSeconds: 3
       restartPolicy: Always
       imagePullSecrets:
         - name: gitlab-scientificnet-org-registry
diff --git a/kubernetes/nginx-deployment.yaml b/kubernetes/nginx-deployment.yaml
index 5182b15c68eba4d699cf4f3474e3a8853428118a..8e3d0acf07eb78893af2ed7c84d3e045033d58ec 100644
--- a/kubernetes/nginx-deployment.yaml
+++ b/kubernetes/nginx-deployment.yaml
@@ -20,7 +20,7 @@ spec:
         io.kompose.service: nginx
     spec:
       containers:
-      - image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/nginx:1.3.1
+      - image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/nginx:1.3.2
         imagePullPolicy: Always
         name: clarin-nginx
         ports:
@@ -32,6 +32,14 @@ spec:
           name: nginx-shib-certs
         - mountPath: /etc/ssl/clarin
           name: nginx-ssl-certs
+        livenessProbe:
+          httpGet:
+            host: clarin.eurac.edu
+            port: 443
+            scheme: HTTPS
+          initialDelaySeconds: 30
+          periodSeconds: 15
+          timeoutSeconds: 3
       restartPolicy: Always
       imagePullSecrets:
         - name: gitlab-scientificnet-org-registry
diff --git a/kubernetes/postgres-deployment.yaml b/kubernetes/postgres-deployment.yaml
index d42c09ebcba8d076af4fb83532e156ebca59c227..5ce83a6d2e75be094cb68b28fedcbce3b1d6ab6e 100644
--- a/kubernetes/postgres-deployment.yaml
+++ b/kubernetes/postgres-deployment.yaml
@@ -48,7 +48,7 @@ spec:
             secretKeyRef:
               key: dspace.utils.name
               name: dspace-secrets
-        image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/postgres:1.3.1
+        image: gitlab.inf.unibz.it:4567/commul/docker/clarin-dspace/production/postgres:1.3.2
         imagePullPolicy: Always
         name: clarin-postgres
         resources: {}