Skip to content

Commit

Permalink
Merge pull request #227 from rstudio/rspm-bundled-r-version
Browse files Browse the repository at this point in the history
Enable the bundled R version in RSPM by default
  • Loading branch information
atheriel authored Jul 11, 2022
2 parents 684522d + f7b81d5 commit d064e81
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/rstudio-pm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rstudio-pm
description: Official Helm chart for RStudio Package Manager
version: 0.3.12
version: 0.3.13
apiVersion: v2
appVersion: 2022.04.0-7
icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png
Expand Down
5 changes: 5 additions & 0 deletions charts/rstudio-pm/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.3.13

- Package Manager now enables the bundled R version (which is required to use
Git-backed packages) by default.

# 0.3.12

- Add the ability to set annotations to the Persistent Volume Claim.
Expand Down
8 changes: 4 additions & 4 deletions charts/rstudio-pm/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RStudio Package Manager

![Version: 0.3.12](https://img.shields.io/badge/Version-0.3.12-informational?style=flat-square) ![AppVersion: 2022.04.0-7](https://img.shields.io/badge/AppVersion-2022.04.0--7-informational?style=flat-square)
![Version: 0.3.13](https://img.shields.io/badge/Version-0.3.13-informational?style=flat-square) ![AppVersion: 2022.04.0-7](https://img.shields.io/badge/AppVersion-2022.04.0--7-informational?style=flat-square)

#### _Official Helm chart for RStudio Package Manager_

Expand All @@ -23,11 +23,11 @@ As a result, please:

## Installing the Chart

To install the chart with the release name `my-release` at version 0.3.12:
To install the chart with the release name `my-release` at version 0.3.13:

```bash
helm repo add rstudio https://helm.rstudio.com
helm install my-release rstudio/rstudio-pm --version=0.3.12
helm install my-release rstudio/rstudio-pm --version=0.3.13
```

## Required Configuration
Expand Down Expand Up @@ -88,7 +88,7 @@ The Helm `config` values are converted into the `rstudio-pm.gcfg` service config
| awsAccessKeyId | bool | `false` | awsAccessKeyId is the access key id for s3 access, used also to gate file creation |
| awsSecretAccessKey | string | `nil` | awsSecretAccessKey is the secret access key, needs to be filled if access_key_id is |
| command | bool | `false` | command is the pod's run command. By default, it uses the container's default |
| config | object | `{"HTTP":{"Listen":":4242"},"Launcher":{"AdminGroup":"root","ServerUser":"root"},"Metrics":{"Enabled":true}}` | config is a nested map of maps that generates the rstudio-pm.gcfg file |
| config | object | `{"HTTP":{"Listen":":4242"},"Launcher":{"AdminGroup":"root","ServerUser":"root"},"Metrics":{"Enabled":true},"Server":{"RVersion":"/opt/R/3.6.2/"}}` | config is a nested map of maps that generates the rstudio-pm.gcfg file |
| extraContainers | list | `[]` | sidecar container list |
| extraObjects | list | `[]` | Extra objects to deploy (value evaluated as a template) |
| fullnameOverride | string | `""` | the full name of the release (can be overridden) |
Expand Down
2 changes: 2 additions & 0 deletions charts/rstudio-pm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ serviceMonitor:

# -- config is a nested map of maps that generates the rstudio-pm.gcfg file
config:
Server:
RVersion: "/opt/R/3.6.2/"
HTTP:
Listen: :4242
Metrics:
Expand Down

0 comments on commit d064e81

Please sign in to comment.