From 9671953af186674f26af818158efd794afcd4e80 Mon Sep 17 00:00:00 2001 From: David Kegley Date: Tue, 30 Apr 2024 13:10:20 -0400 Subject: [PATCH] Enable python and quarto for local execution by default --- Justfile | 2 +- charts/rstudio-connect/Chart.yaml | 2 +- charts/rstudio-connect/NEWS.md | 4 ++++ charts/rstudio-connect/values.yaml | 9 +++++++++ 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index a436dfcc..6c70250b 100644 --- a/Justfile +++ b/Justfile @@ -95,6 +95,6 @@ test-connect-interpreter-versions: for ex in $executables do - docker run --rm -it $image command -v $ex + docker run --rm -it $image /bin/bash -c "command -v $ex" done done diff --git a/charts/rstudio-connect/Chart.yaml b/charts/rstudio-connect/Chart.yaml index c34a5567..d0e38f81 100644 --- a/charts/rstudio-connect/Chart.yaml +++ b/charts/rstudio-connect/Chart.yaml @@ -1,6 +1,6 @@ name: rstudio-connect description: Official Helm chart for RStudio Connect -version: 0.6.3 +version: 0.6.4 apiVersion: v2 appVersion: 2024.03.0 icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png diff --git a/charts/rstudio-connect/NEWS.md b/charts/rstudio-connect/NEWS.md index bd7a237b..348c7e57 100644 --- a/charts/rstudio-connect/NEWS.md +++ b/charts/rstudio-connect/NEWS.md @@ -1,5 +1,9 @@ # Changelog +## 0.6.4 + +- Python and Quarto are now enabled by default for local execution + ## 0.6.3 - Bump Chronicle Agent to version 2024.03.0 diff --git a/charts/rstudio-connect/values.yaml b/charts/rstudio-connect/values.yaml index c63974f7..03721979 100644 --- a/charts/rstudio-connect/values.yaml +++ b/charts/rstudio-connect/values.yaml @@ -335,6 +335,15 @@ config: DataDir: /var/lib/rstudio-connect Scheduler: InitTimeout: 5m + Python: + Enabled: true + Executable: + - /opt/python/3.9.17/bin/python + - /opt/python/3.8.17/bin/python + Quarto: + Enabled: true + Executable: + - /opt/quarto/1.3.340/bin/quarto Logging: ServiceLog: STDOUT ServiceLogLevel: INFO # INFO, WARNING or ERROR