Skip to content

Commit

Permalink
Enable python and quarto for local execution by default
Browse files Browse the repository at this point in the history
  • Loading branch information
dbkegley committed Apr 30, 2024
1 parent 4a728b7 commit ca42d74
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ test-connect-interpreter-versions:

for ex in $executables
do
docker run --rm -it $image command -v $ex
docker run --rm $image /bin/bash -c "command -v $ex"
done
done
2 changes: 1 addition & 1 deletion charts/rstudio-connect/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions charts/rstudio-connect/NEWS.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 9 additions & 0 deletions charts/rstudio-connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ca42d74

Please sign in to comment.