Publish new changes in catalog

This commit is contained in:
sonicaj
2023-09-25 12:42:49 +00:00
parent 7640b88cff
commit 7c6123d278
16 changed files with 11 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ description: |
annotations:
title: Collabora
type: application
version: 1.2.16
version: 1.2.17
apiVersion: v2
appVersion: 23.05.4.2.1
kubeVersion: '>=1.16.0-0'

View File

@@ -7,7 +7,7 @@ config:
extra_params: --o:welcome.enable=false --o:user_interface.mode=notebookbar --o:ssl.termination=true
--o:ssl.enable=false --o:net.proto=IPv4 --o:net.post_allow.host[0]=.+ --o:storage.wopi.host[0]=.+
password: changeme
server_name: ssh.sonicaj.com:49980
server_name: ssh.sonicaj.com
timezone: Asia/Karachi
username: admin
ixChartContext:

View File

@@ -64,7 +64,10 @@ questions:
default: "--o:welcome.enable=false --o:user_interface.mode=notebookbar --o:ssl.termination=true --o:ssl.enable=false --o:net.proto=IPv4 --o:net.post_allow.host[0]=.+ --o:storage.wopi.host[0]=.+"
- variable: server_name
label: "Server Name"
description: "When this environment variable is set (is not “”), then its value will be used as server name in /etc/loolwsd/loolwsd.xml. Without this, CODE is not delivering a correct host for the websocket connection in case of a proxy in front of it."
description: |
When this environment variable is set (is not “”), then its value will be used as server name in /etc/loolwsd/loolwsd.xml.
Without this, CODE is not delivering a correct host for the websocket connection in case of a proxy in front of it.</br>
If a port is not specified, the below configured Node Port will be used.
schema:
type: string
$ref:

View File

@@ -117,7 +117,11 @@ spec:
{{ $envList = mustAppend $envList (dict "name" "dictionaries" "value" $envConfig.dictionaries) }}
{{ $envList = mustAppend $envList (dict "name" "extra_params" "value" $envConfig.extra_params) }}
{{ $envList = mustAppend $envList (dict "name" "DONT_GEN_SSL_CERT" "value" "true") }}
{{ $envList = mustAppend $envList (dict "name" "server_name" "value" (printf "%v:%v" $envConfig.server_name .Values.nodePort)) }}
{{ if not (contains ":" $envConfig.server_name) }}
{{ $envList = mustAppend $envList (dict "name" "server_name" "value" (printf "%v:%v" $envConfig.server_name .Values.nodePort)) }}
{{ else }}
{{ $envList = mustAppend $envList (dict "name" "server_name" "value" (printf "%v" $envConfig.server_name)) }}
{{ end }}
{{ $envList = mustAppend $envList (dict "name" "username" "valueFromSecret" true "secretName" $secretName "secretKey" "username") }}
{{ $envList = mustAppend $envList (dict "name" "password" "valueFromSecret" true "secretName" $secretName "secretKey" "password") }}
{{ include "common.containers.allEnvironmentVariables" (dict "environmentVariables" $envList) | nindent 10 }}