Skip to content

Commit

Permalink
Only enabled Quarto by default if launcher enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
tnederlof committed Apr 26, 2024
1 parent dc71b08 commit a6a80a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions charts/rstudio-connect/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ app.kubernetes.io/instance: {{ .Release.Name }}
{{- $pythonSettingsDict := dict "Enabled" ("true") }}
{{- $pythonDict := dict "Python" ( $pythonSettingsDict ) }}
{{- $defaultConfig = merge $defaultConfig $launcherDict $pythonDict }}
{{- $quartoSettingsDict := dict "Enabled" ("true") }}
{{- $quartoDict := dict "Quarto" ( $quartoSettingsDict ) }}
{{- $defaultConfig = merge $defaultConfig $launcherDict $quartoDict }}
{{- end }}
{{- /* default licensing configuration */}}
{{- if .Values.license.server }}
Expand Down
4 changes: 2 additions & 2 deletions charts/rstudio-connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,6 @@ config:
DataDir: /var/lib/rstudio-connect
Scheduler:
InitTimeout: 5m
Quarto:
Enabled: true
Logging:
ServiceLog: STDOUT
ServiceLogLevel: INFO # INFO, WARNING or ERROR
Expand All @@ -349,3 +347,5 @@ config:
GraphiteHost: 127.0.0.1
GraphitePort: 9109
GraphiteClientId: rsconnect
# Note: Quarto and Python are both enabled automatically when launcher.enabled: true
# https://github.com/rstudio/helm/blob/main/charts/rstudio-connect/templates/_helpers.tpl

0 comments on commit a6a80a8

Please sign in to comment.