From e57f62d203f00f2c3ee4895e3c03ec303c5ff581 Mon Sep 17 00:00:00 2001 From: avouacr Date: Mon, 15 Jul 2024 12:39:14 +0000 Subject: [PATCH] feat(shinyproxy): hide navbar by default --- charts/shinyproxy/Chart.yaml | 2 +- charts/shinyproxy/templates/configmap.yaml | 1 + charts/shinyproxy/values.yaml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/shinyproxy/Chart.yaml b/charts/shinyproxy/Chart.yaml index 10daa6a..c386aa1 100644 --- a/charts/shinyproxy/Chart.yaml +++ b/charts/shinyproxy/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 2.1.3 +version: 2.2.0 dependencies: - name: library-chart diff --git a/charts/shinyproxy/templates/configmap.yaml b/charts/shinyproxy/templates/configmap.yaml index e7c61e6..a2bf492 100644 --- a/charts/shinyproxy/templates/configmap.yaml +++ b/charts/shinyproxy/templates/configmap.yaml @@ -29,6 +29,7 @@ data: authentication: {{ .Values.proxyConfig.authentication.type }} admin-groups: {{ .Values.proxyConfig.adminGroups }} title: {{ .Values.proxyConfig.title }} + hide-navbar: {{ .Values.proxyConfig.hideNavbar }} default-max-instances: {{ .Values.proxyConfig.defaultMaxInstances }} default-proxy-max-lifetime: {{ .Values.proxyConfig.defaultProxyMaxLifeTime }} {{ if eq .Values.proxyConfig.authentication.type "openid" }} diff --git a/charts/shinyproxy/values.yaml b/charts/shinyproxy/values.yaml index b8e38cf..66921c0 100644 --- a/charts/shinyproxy/values.yaml +++ b/charts/shinyproxy/values.yaml @@ -32,6 +32,7 @@ proxyDeploy: proxyConfig: landingPage: / + hideNavbar: true heartbeatRate: 10000 heartbeatTimeout: 60000 containerWaitTime: 20000