From 0a0eb233fc9a632b55b4bd5eadd8833c48a52129 Mon Sep 17 00:00:00 2001 From: MoritzWeber Date: Tue, 4 Jun 2024 11:17:09 +0200 Subject: [PATCH] build: Update Guacamole to 1.5.5 The update contains several bug fixes and stability improvements. --- helm/templates/guacamole/guacd.deployment.yaml | 2 +- images/guacamole/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/templates/guacamole/guacd.deployment.yaml b/helm/templates/guacamole/guacd.deployment.yaml index 8fa39e721..a988c91a9 100644 --- a/helm/templates/guacamole/guacd.deployment.yaml +++ b/helm/templates/guacamole/guacd.deployment.yaml @@ -42,7 +42,7 @@ spec: {{ if .Values.docker.images.guacamole.guacd }} image: {{ .Values.docker.images.guacamole.guacd }} {{ else }} - image: {{ .Values.docker.registry.external }}/guacamole/guacd:1.5.2 + image: {{ .Values.docker.registry.external }}/guacamole/guacd:1.5.5 {{ end }} command: ["/bin/sh", "-c", "mkdir -p /home/guacd/logs; /opt/guacamole/sbin/guacd -b 0.0.0.0 -L $GUACD_LOG_LEVEL -f > >(tee -a /home/guacd/logs/stdout.log) 2> >(tee -a /home/guacd/logs/stderr.log >&2)"] ports: diff --git a/images/guacamole/Dockerfile b/images/guacamole/Dockerfile index 766e77e53..86ca659b0 100644 --- a/images/guacamole/Dockerfile +++ b/images/guacamole/Dockerfile @@ -11,7 +11,7 @@ COPY ext /tmp/ext WORKDIR /tmp/ext RUN zip -r /tmp/guacamole-capellacollab.jar . -FROM guacamole/guacamole:1.5.2 +FROM guacamole/guacamole:1.5.5 USER root