diff --git a/chart/README.md b/chart/README.md
index 9ef273a0dd4f0b748b5a55425f4f47ec66bb6fea..acc5e4533912b96530d015174f4b1566a5815fbe 100644
--- a/chart/README.md
+++ b/chart/README.md
@@ -1 +1,10 @@
 Chart for the View Server (VS) bundling all services
+
+Useful commands:
+
+```bash
+helm dependency update
+
+helm template testing . --output-dir ../tmp/ -f values.yaml
+
+```
diff --git a/chart/files/init-db.sh b/chart/files/init-db.sh
new file mode 100644
index 0000000000000000000000000000000000000000..5b05895c2daf4f02ba53b65955861393e069a93b
--- /dev/null
+++ b/chart/files/init-db.sh
@@ -0,0 +1,79 @@
+# Check if collection exits in database and initialize database only if not
+if python3 manage.py id check "${COLLECTION}"; then
+    echo "Initialize database"
+
+    python3 manage.py coveragetype import /rgbnir_definition.json --traceback
+
+    if [ "${COLLECTION}" == "VHR_IMAGE_2018" ]; then
+        echo "Initializing collection '${COLLECTION}'."
+
+        # PL00
+        python3 manage.py producttype create "${COLLECTION}"_Product_PL00 --traceback \
+            --coverage-type "RGBNir"
+        python3 manage.py browsetype create "${COLLECTION}"_Product_PL00 --traceback \
+            --red "red" \
+            --green "green" \
+            --blue "blue" \
+            --red-range 1000 15000 \
+            --green-range 1000 15000 \
+            --blue-range 1000 15000 \
+            --red-nodata 0 \
+            --green-nodata 0 \
+            --blue-nodata 0
+        python3 manage.py browsetype create "${COLLECTION}"_Product_PL00 "TRUE_COLOR" --traceback \
+            --red "red" \
+            --green "green" \
+            --blue "blue" \
+            --red-range 1000 15000 \
+            --green-range 1000 15000 \
+            --blue-range 1000 15000 \
+            --red-nodata 0 \
+            --green-nodata 0 \
+            --blue-nodata 0
+        python3 manage.py browsetype create "${COLLECTION}"_Product_PL00 "FALSE_COLOR" --traceback \
+            --red "nir" \
+            --green "red" \
+            --blue "green" \
+            --red-range 1000 15000 \
+            --green-range 1000 15000 \
+            --blue-range 1000 15000 \
+            --red-nodata 0 \
+            --green-nodata 0 \
+            --blue-nodata 0
+        python3 manage.py browsetype create "${COLLECTION}"_Product_PL00 "NDVI" --traceback \
+            --grey "(nir-red)/(nir+red)" --grey-range -1 1
+
+
+        python3 manage.py collectiontype create "${COLLECTION}"_Collection --traceback \
+            --coverage-type "RGBNir" \
+            --product-type "${COLLECTION}"_Product_PL00
+
+        # Create collections for all products
+        python3 manage.py collection create "${COLLECTION}" --type "${COLLECTION}"_Collection --traceback
+
+        # Register mask type
+        python3 manage.py masktype create --validity "${COLLECTION}"_Product_PL00 validity
+
+    else
+        echo "Provided collection '${COLLECTION}' not valid."
+    fi
+
+    python3 manage.py storageauth create auth-cloud-ovh "${OS_AUTH_URL_SHORT}" \
+        --type keystone \
+        -p auth-version "${ST_AUTH_VERSION}" \
+        -p identity-api-version="${ST_AUTH_VERSION}" \
+        -p username "${OS_USERNAME}" \
+        -p password "${OS_PASSWORD}" \
+        -p tenant-name "${OS_TENANT_NAME}" \
+        -p tenant-id "${OS_TENANT_ID}" \
+        -p region-name "${OS_REGION_NAME}"
+
+    python3 manage.py storage create \
+        ${UPLOAD_CONTAINER} ${UPLOAD_CONTAINER} \
+        --type swift \
+        --storage-auth auth-cloud-ovh
+
+
+else
+    echo "Using existing database"
+fi
diff --git a/chart/templates/init-db-configmap.yaml b/chart/templates/init-db-configmap.yaml
index a0516d5b6af5683ade2dcc94d3d96d38a984f0e5..6e130e1c2d7cbf74eaa6eb45937e1ade6c1cd3f8 100644
--- a/chart/templates/init-db-configmap.yaml
+++ b/chart/templates/init-db-configmap.yaml
@@ -1,7 +1,6 @@
 apiVersion: v1
-data:
-  init-db.sh: |
-    {{- .Values.initDb | nindent 4 }}
 kind: ConfigMap
 metadata:
   name: {{ include "vs.fullname" . }}-init-db
+data:
+  {{ (.Files.Glob "files/init-db.sh").AsConfig | nindent 2}}
diff --git a/chart/values-init-db.yaml b/chart/values-init-db.yaml
deleted file mode 100644
index 23118ada6f0d4f841dddcb38a7710d4c72344bf9..0000000000000000000000000000000000000000
--- a/chart/values-init-db.yaml
+++ /dev/null
@@ -1,80 +0,0 @@
-initDb: |
-    # Check if collection exits in database and initialize database only if not
-    if python3 manage.py id check "${COLLECTION}"; then
-        echo "Initialize database"
-
-        python3 manage.py coveragetype import /rgbnir_definition.json --traceback
-
-        if [ "${COLLECTION}" == "VHR_IMAGE_2018" ]; then
-            echo "Initializing collection '${COLLECTION}'."
-
-            # PL00
-            python3 manage.py producttype create "${COLLECTION}"_Product_PL00 --traceback \
-                --coverage-type "RGBNir"
-            python3 manage.py browsetype create "${COLLECTION}"_Product_PL00 --traceback \
-                --red "red" \
-                --green "green" \
-                --blue "blue" \
-                --red-range 1000 15000 \
-                --green-range 1000 15000 \
-                --blue-range 1000 15000 \
-                --red-nodata 0 \
-                --green-nodata 0 \
-                --blue-nodata 0
-            python3 manage.py browsetype create "${COLLECTION}"_Product_PL00 "TRUE_COLOR" --traceback \
-                --red "red" \
-                --green "green" \
-                --blue "blue" \
-                --red-range 1000 15000 \
-                --green-range 1000 15000 \
-                --blue-range 1000 15000 \
-                --red-nodata 0 \
-                --green-nodata 0 \
-                --blue-nodata 0
-            python3 manage.py browsetype create "${COLLECTION}"_Product_PL00 "FALSE_COLOR" --traceback \
-                --red "nir" \
-                --green "red" \
-                --blue "green" \
-                --red-range 1000 15000 \
-                --green-range 1000 15000 \
-                --blue-range 1000 15000 \
-                --red-nodata 0 \
-                --green-nodata 0 \
-                --blue-nodata 0
-            python3 manage.py browsetype create "${COLLECTION}"_Product_PL00 "NDVI" --traceback \
-                --grey "(nir-red)/(nir+red)" --grey-range -1 1
-
-
-            python3 manage.py collectiontype create "${COLLECTION}"_Collection --traceback \
-                --coverage-type "RGBNir" \
-                --product-type "${COLLECTION}"_Product_PL00
-
-            # Create collections for all products
-            python3 manage.py collection create "${COLLECTION}" --type "${COLLECTION}"_Collection --traceback
-
-            # Register mask type
-            python3 manage.py masktype create --validity "${COLLECTION}"_Product_PL00 validity
-
-        else
-            echo "Provided collection '${COLLECTION}' not valid."
-        fi
-
-        python3 manage.py storageauth create auth-cloud-ovh "${OS_AUTH_URL_SHORT}" \
-            --type keystone \
-            -p auth-version "${ST_AUTH_VERSION}" \
-            -p identity-api-version="${ST_AUTH_VERSION}" \
-            -p username "${OS_USERNAME}" \
-            -p password "${OS_PASSWORD}" \
-            -p tenant-name "${OS_TENANT_NAME}" \
-            -p tenant-id "${OS_TENANT_ID}" \
-            -p region-name "${OS_REGION_NAME}"
-
-        python3 manage.py storage create \
-            ${UPLOAD_CONTAINER} ${UPLOAD_CONTAINER} \
-            --type swift \
-            --storage-auth auth-cloud-ovh
-
-
-    else
-        echo "Using existing database"
-    fi