feat(guacmole-client): Add extension-priority setting (#1772)
* feat(guacmole-client): Add extension-priority setting * feat(guacmole-client): Add extension-priority setting * bump
This commit is contained in:
@@ -25,7 +25,7 @@ sources:
|
|||||||
- https://hub.docker.com/r/guacamole/guacamole
|
- https://hub.docker.com/r/guacamole/guacamole
|
||||||
- http://guacamole.incubator.apache.org/doc/gug/introduction.html
|
- http://guacamole.incubator.apache.org/doc/gug/introduction.html
|
||||||
type: application
|
type: application
|
||||||
version: 1.0.5
|
version: 1.0.6
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- utilities
|
- utilities
|
||||||
|
|||||||
@@ -93,13 +93,26 @@ questions:
|
|||||||
default: ""
|
default: ""
|
||||||
- variable: GUACD_PORT
|
- variable: GUACD_PORT
|
||||||
label: "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:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
required: true
|
required: true
|
||||||
default: 4822
|
default: 4822
|
||||||
|
|
||||||
# Include{containerConfig}
|
# Include{containerConfig}
|
||||||
|
- 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
|
- variable: api
|
||||||
group: "App Configuration"
|
group: "App Configuration"
|
||||||
label: "API Configuration"
|
label: "API Configuration"
|
||||||
@@ -818,7 +831,7 @@ questions:
|
|||||||
default: 1001
|
default: 1001
|
||||||
- variable: fsGroup
|
- variable: fsGroup
|
||||||
label: "fsGroup"
|
label: "fsGroup"
|
||||||
description: "The group that should own ALL storage."
|
description: "The group that should own ALL storage"
|
||||||
schema:
|
schema:
|
||||||
type: int
|
type: int
|
||||||
default: 568
|
default: 568
|
||||||
|
|||||||
@@ -6,6 +6,10 @@ kind: ConfigMap
|
|||||||
metadata:
|
metadata:
|
||||||
name: guacamole-client-env
|
name: guacamole-client-env
|
||||||
data:
|
data:
|
||||||
|
{{/* GENERAL */}}
|
||||||
|
{{- if .Values.general.EXTENSION_PRIORITY }}
|
||||||
|
EXTENSION_PRIORITY: {{ .Values.general.EXTENSION_PRIORITY | quote }}
|
||||||
|
{{- end }}
|
||||||
{{/* API */}}
|
{{/* API */}}
|
||||||
{{- if .Values.api.API_SESSION_TIMEOUT }}
|
{{- if .Values.api.API_SESSION_TIMEOUT }}
|
||||||
API_SESSION_TIMEOUT: {{ .Values.api.API_SESSION_TIMEOUT | quote }}
|
API_SESSION_TIMEOUT: {{ .Values.api.API_SESSION_TIMEOUT | quote }}
|
||||||
|
|||||||
@@ -42,6 +42,9 @@ header:
|
|||||||
api: {}
|
api: {}
|
||||||
# API_SESSION_TIMEOUT: "60"
|
# API_SESSION_TIMEOUT: "60"
|
||||||
|
|
||||||
|
general: {}
|
||||||
|
# EXTENSION_PRIORITY: "openid"
|
||||||
|
|
||||||
json: {}
|
json: {}
|
||||||
# JSON_SECRET_KEY: "random32charkey"
|
# JSON_SECRET_KEY: "random32charkey"
|
||||||
# JSON_TRUSTED_NETWORKS: "127.0.0.0/8, 10.0.0.0/8"
|
# JSON_TRUSTED_NETWORKS: "127.0.0.0/8, 10.0.0.0/8"
|
||||||
|
|||||||
Reference in New Issue
Block a user