Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-01-24 10:00:59 +00:00
parent 0ca870a4e7
commit 65ab9c3a3a
15 changed files with 302 additions and 272 deletions

View File

@ -1,6 +1,15 @@
# Changelog<br>
<a name="guacamole-client-1.0.6"></a>
### [guacamole-client-1.0.6](https://github.com/truecharts/apps/compare/guacamole-client-1.0.5...guacamole-client-1.0.6) (2022-01-24)
#### Feat
* Add extension-priority setting ([#1772](https://github.com/truecharts/apps/issues/1772))
<a name="guacamole-client-1.0.5"></a>
### [guacamole-client-1.0.5](https://github.com/truecharts/apps/compare/guacamole-client-1.0.4...guacamole-client-1.0.5) (2022-01-22)

View File

@ -6,4 +6,4 @@ dependencies:
repository: https://truecharts.org/
version: 6.0.56
digest: sha256:c797e01a44b3bd19bb85a07e0178e241f67885a3b143b65e27f44cc6a5a762be
generated: "2022-01-22T13:58:36.360781622Z"
generated: "2022-01-24T09:56:37.102366145Z"

View File

@ -25,7 +25,7 @@ sources:
- https://hub.docker.com/r/guacamole/guacamole
- http://guacamole.incubator.apache.org/doc/gug/introduction.html
type: application
version: 1.0.5
version: 1.0.6
annotations:
truecharts.org/catagories: |
- utilities

View File

@ -24,6 +24,7 @@ You will, however, be able to use all values referenced in the common chart here
| envValueFrom.POSTGRES_HOSTNAME.secretKeyRef.name | string | `"dbcreds"` | |
| envValueFrom.POSTGRES_PASSWORD.secretKeyRef.key | string | `"postgresql-password"` | |
| envValueFrom.POSTGRES_PASSWORD.secretKeyRef.name | string | `"dbcreds"` | |
| general | object | `{}` | |
| header.HEADER_ENABLED | bool | `false` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/guacamole-client"` | |

View File

@ -42,6 +42,9 @@ header:
api: {}
# API_SESSION_TIMEOUT: "60"
general: {}
# EXTENSION_PRIORITY: "openid"
json: {}
# JSON_SECRET_KEY: "random32charkey"
# JSON_TRUSTED_NETWORKS: "127.0.0.0/8, 10.0.0.0/8"

View File

@ -199,7 +199,7 @@ questions:
default: ""
- variable: GUACD_PORT
label: "Guacd Port"
description: "The port that Guacamole should use when connecting to guacd."
description: "The port that Guacamole should use when connecting to guacd"
schema:
type: int
required: true
@ -304,6 +304,19 @@ questions:
label: "Value"
schema:
type: string
- variable: general
group: "App Configuration"
label: "General Configuration"
schema:
additional_attrs: true
type: dict
attrs:
- variable: EXTENSION_PRIORITY
label: "Extension Priority (Leave blank for default)"
description: "A comma-separated list of the namespaces of all extensions that should be loaded in a specific order"
schema:
type: string
default: ""
- variable: api
group: "App Configuration"
label: "API Configuration"
@ -1885,7 +1898,7 @@ questions:
default: 1001
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
description: "The group that should own ALL storage"
schema:
type: int
default: 568

File diff suppressed because one or more lines are too long

View File

@ -6,6 +6,10 @@ kind: ConfigMap
metadata:
name: guacamole-client-env
data:
{{/* GENERAL */}}
{{- if .Values.general.EXTENSION_PRIORITY }}
EXTENSION_PRIORITY: {{ .Values.general.EXTENSION_PRIORITY | quote }}
{{- end }}
{{/* API */}}
{{- if .Values.api.API_SESSION_TIMEOUT }}
API_SESSION_TIMEOUT: {{ .Values.api.API_SESSION_TIMEOUT | quote }}