Skip to content

Commit cdd4719

Browse files
authored
shinyproxy: add default-websocket-reconnection-mode, update RBAC (#86)
1 parent 55a97c2 commit cdd4719

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

charts/shinyproxy/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: shinyproxy
3-
description: A Helm chart to deplo ShinyProxy (https://www.shinyproxy.io/)
3+
description: A Helm chart to deploy ShinyProxy (https://www.shinyproxy.io/)
44

55
# A chart can be either an 'application' or a 'library' chart.
66
#
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.2.1
18+
version: 2.3.0
1919

2020
dependencies:
2121
- name: library-chart

charts/shinyproxy/templates/configmap.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ data:
3232
hide-navbar: {{ .Values.proxyConfig.hideNavbar }}
3333
default-max-instances: {{ .Values.proxyConfig.defaultMaxInstances }}
3434
default-proxy-max-lifetime: {{ .Values.proxyConfig.defaultProxyMaxLifeTime }}
35+
default-webSocket-reconnection-mode: {{ .Values.proxyConfig.defaultWebSocketReconnectionMode }}
3536
{{ if eq .Values.proxyConfig.authentication.type "openid" }}
3637
openid:
3738
auth-url: {{ .Values.proxyConfig.authentication.openid.authURL }}

charts/shinyproxy/templates/role.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ rules:
77
resources: ["pods"]
88
verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]
99
- apiGroups: [""]
10-
resources: ["pods/log"]
11-
verbs: ["get", "watch"]
10+
resources: ["events"]
11+
verbs: ["get", "list", "watch"]

charts/shinyproxy/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ proxyConfig:
3838
containerWaitTime: 20000
3939
defaultMaxInstances: 1
4040
defaultProxyMaxLifeTime: 120
41+
defaultWebSocketReconnectionMode: None
4142
port: 8080
4243
authentication:
4344
type: none

0 commit comments

Comments
 (0)