Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2023-07-29 09:29:44 +00:00
parent 6553f215f2
commit 77a906f299
12 changed files with 24 additions and 12 deletions

View File

@@ -1,9 +0,0 @@
## [guacamole-9.0.2](https://github.com/truecharts/charts/compare/guacamole-9.0.1...guacamole-9.0.2) (2023-07-29)
### Chore
- update helm general non-major ([#10955](https://github.com/truecharts/charts/issues/10955))

View File

@@ -4,6 +4,15 @@
## [guacamole-9.0.3](https://github.com/truecharts/charts/compare/guacamole-9.0.2...guacamole-9.0.3) (2023-07-29)
### Chore
- set guacamole to listen on `/` ([#10987](https://github.com/truecharts/charts/issues/10987))
## [guacamole-9.0.2](https://github.com/truecharts/charts/compare/guacamole-9.0.1...guacamole-9.0.2) (2023-07-29)
### Chore

View File

@@ -20,7 +20,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/guacamole
- https://github.com/apache/guacamole-client
type: application
version: 9.0.2
version: 9.0.3
annotations:
truecharts.org/catagories: |
- utilities

View File

@@ -0,0 +1,9 @@
## [guacamole-9.0.3](https://github.com/truecharts/charts/compare/guacamole-9.0.2...guacamole-9.0.3) (2023-07-29)
### Chore
- set guacamole to listen on `/` ([#10987](https://github.com/truecharts/charts/issues/10987))

View File

@@ -119,11 +119,9 @@ workload:
liveness:
type: http
port: "{{ .Values.service.main.ports.main.targetPort }}"
path: /guacamole
readiness:
type: http
port: "{{ .Values.service.main.ports.main.targetPort }}"
path: /guacamole
startup:
type: tcp
port: "{{ .Values.service.main.ports.main.targetPort }}"

View File

@@ -7,6 +7,11 @@ guacamole-config:
enabled: true
data:
RECORDING_SEARCH_PATH: /var/lib/guacamole/recordings
{{/*
https://github.com/apache/guacamole-client/blob/bffc5fbdd5e2bb7a777f55c819a1d4d858829cb7/guacamole-docker/bin/start.sh#L1038
TomCat uses the war name as the context path. ROOT.war is the default and means the context path is /.
*/}}
WEBAPP_CONTEXT: ROOT
{{/* GuacD */}}
GUACD_HOSTNAME: {{ printf "%v-guacd" $fullname }}
GUACD_PORT: {{ .Values.service.guacd.ports.guacd.port | quote }}