diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6572dc6fe667806bda3df117420fc57032c9bd42..a801a81d664c072f0ab34b4f6b709176ef557da8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## [0.11.0] - 2022-09-15
+
+* Disable OnlyOffice CPU-heavy tasks on startup (#1069)
+
 ## [0.10.28] - 2022-09-06
 
 * Quote other COMMIT_INFO values to not screw up yaml
diff --git a/Chart.yaml b/Chart.yaml
index d0ce94509a0c887a4118a37cc6aa6a5aa88f974f..cfc5afc45a0653cbc56cd45dc21e88ce5cb9198a 100644
--- a/Chart.yaml
+++ b/Chart.yaml
@@ -3,7 +3,7 @@ apiVersion: v2
 description: |
   A helm chart for installing NextCloud and setting up ONLYOFFICE integration
 name: nextcloud-onlyoffice
-version: 0.10.35
+version: 0.11.0
 appVersion: NC-24.0.2-OO-7.1.1.23
 icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg
 dependencies:
diff --git a/templates/onlyoffice-deployment.yaml b/templates/onlyoffice-deployment.yaml
index 25a7e71e191cd09ebd0337bdd0e95ee8206794d3..2937a602ab8205bd5a75c40c46d016a94ea37636 100644
--- a/templates/onlyoffice-deployment.yaml
+++ b/templates/onlyoffice-deployment.yaml
@@ -101,8 +101,8 @@ spec:
               value: "{{ .Release.Name }}-redis-master"
             - name: REDIS_SERVER_PORT
               value: "{{ .Values.redis.master.service.ports.redis }}"
-            - name: SKIP_FONTS_GENERATION
-              value: "{{ .Values.onlyoffice.skipFontsGeneration }}"
+            - name: GENERATE_FONTS
+              value: "{{ .Values.onlyoffice.generateFonts }}"
             - name: USE_UNAUTHORIZED_STORAGE
               value: "{{ .Values.onlyoffice.unauthorizedStorage }}"
             - name: ONLYOFFICE_HTTPS_HSTS_ENABLED
diff --git a/values.yaml b/values.yaml
index a9e6b38d8365f085eddebf6f49a982b7d0bb78c0..6a0dc0b2ebfab221cc8df9e88a9ff0ab31bfddd1 100644
--- a/values.yaml
+++ b/values.yaml
@@ -64,12 +64,12 @@ onlyoffice:
 
   jwtSecret: secret
 
-  # Disable font generation during startup.
+  # Enable font generation during startup.
   # This takes a long time and is not needed if you don't provide custom
   # fonts.
-  # See https://0xacab.org/infrared/platform_wg/docker-onlyoffice-documentserver/issues/10
-  # for context.
-  skipFontsGeneration: true
+  # Sets the `GENERATE_FONTS` env var, see
+  # https://github.com/ONLYOFFICE/Docker-DocumentServer#available-configuration-parameters
+  generateFonts: false
 
   # Allow chainging unauthorizedStorage and httpsHstsEnabled
   # Useful if you want to make Nextcloud and Onlyoffice work without proper
@@ -86,6 +86,7 @@ onlyoffice:
   server_name: onlyoffice.domain
 
   image:
+    # https://hub.docker.com/r/onlyoffice/documentserver/tags
     repository: onlyoffice/documentserver
     tag: 7.1.1.23
     pullPolicy: Always