Skip to content

Commit

Permalink
Merge pull request #474 from rstudio/ppm-r-and-python-scanning
Browse files Browse the repository at this point in the history
PPM - set default for `config.Server.RVersion` and `config.Server.PythonVersion` to `""`
  • Loading branch information
SamEdwardes authored Mar 12, 2024
2 parents 2997b1d + ebdff3b commit 5fb2ad5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 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.5.19
version: 0.5.20
apiVersion: v2
appVersion: 2023.12.0
icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png
Expand Down
6 changes: 5 additions & 1 deletion charts/rstudio-pm/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.5.20

- Removed`config.Server.RVersion` from the values.yaml. This does not need to be configured, R version auto-detection will be used ([#473](https://github.com/rstudio/helm/issues/473)).

# 0.5.19

- Add option to set `pod.terminationGracePeriodSeconds`
Expand All @@ -23,7 +27,7 @@

- Update default Posit Package Manager version to 2023.08.0-16

# 0.5.13
# 0.5.13

- Change default operating system from `bionic` to `ubuntu2204` (`jammy`)
- This is not a breaking change since it does not affect how Package Manager serves packages
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.5.19](https://img.shields.io/badge/Version-0.5.19-informational?style=flat-square) ![AppVersion: 2023.12.0](https://img.shields.io/badge/AppVersion-2023.12.0-informational?style=flat-square)
![Version: 0.5.20](https://img.shields.io/badge/Version-0.5.20-informational?style=flat-square) ![AppVersion: 2023.12.0](https://img.shields.io/badge/AppVersion-2023.12.0-informational?style=flat-square)

#### _Official Helm chart for RStudio Package Manager_

Expand All @@ -21,11 +21,11 @@ To ensure a stable production deployment, please:

## Installing the Chart

To install the chart with the release name `my-release` at version 0.5.19:
To install the chart with the release name `my-release` at version 0.5.20:

```bash
helm repo add rstudio https://helm.rstudio.com
helm upgrade --install my-release rstudio/rstudio-pm --version=0.5.19
helm upgrade --install my-release rstudio/rstudio-pm --version=0.5.20
```

To explore other chart versions, take a look at:
Expand Down Expand Up @@ -154,7 +154,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"},"Metrics":{"Enabled":true},"Server":{"RVersion":"/opt/R/3.6.2/"}}` | config is a nested map of maps that generates the rstudio-pm.gcfg file |
| config | object | `{"HTTP":{"Listen":":4242"},"Metrics":{"Enabled":true},"Server":{"Address":"http://localhost:4242"}}` | config is a nested map of maps that generates the rstudio-pm.gcfg file |
| enableMigration | bool | `true` | Enable migrations for shared storage (if necessary) using Helm hooks. |
| enableSandboxing | bool | `true` | Enable sandboxing of Git builds, which requires elevated security privileges for the Package Manager container. |
| extraContainers | list | `[]` | sidecar container list |
Expand Down
2 changes: 1 addition & 1 deletion charts/rstudio-pm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ serviceMonitor:
# -- config is a nested map of maps that generates the rstudio-pm.gcfg file
config:
Server:
RVersion: "/opt/R/3.6.2/"
Address: http://localhost:4242
HTTP:
Listen: :4242
Metrics:
Expand Down

0 comments on commit 5fb2ad5

Please sign in to comment.