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