Skip to content

Commit

Permalink
Converted the new shiny proxy seats config values into variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredeen committed Jul 4, 2024
1 parent 6d89502 commit 4fb4e6d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/shinyproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: shinyproxy
description: A Helm chart to install Shinyproxy
type: application
version: 1.2.0
version: 1.2.1
appVersion: "0.1"
maintainers:
- name: Team Whale
Expand Down
6 changes: 3 additions & 3 deletions apps/shinyproxy/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ data:
id: {{ .Release.Name }}
display-name: {{ .Values.app_name | quote }}
description: {{ .Values.app_description | quote }}
minimum-seats-available: 2
seats-per-container: 3
allow-container-re-use: true
minimum-seats-available: {{ .Values.appconfig.minimumSeatsAvailable }}
seats-per-container: {{ .Values.appconfig.seatsPerContainer }}
allow-container-re-use: {{ .Values.appconfig.allowContainerReuse }}
labels:
sp.instance: {{ .Release.Name }}
allow-internet-egress: "true"
Expand Down
3 changes: 3 additions & 0 deletions apps/shinyproxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ appconfig:
proxyport: 8080
port: 3838
image:
minimumSeatsAvailable: 2
seatsPerContainer: 3
allowContainerReuse: true


global:
Expand Down

0 comments on commit 4fb4e6d

Please sign in to comment.