diff --git a/charts/rstudio-pm/Chart.yaml b/charts/rstudio-pm/Chart.yaml index f2bb4f3b..53bd888f 100644 --- a/charts/rstudio-pm/Chart.yaml +++ b/charts/rstudio-pm/Chart.yaml @@ -1,6 +1,6 @@ name: rstudio-pm description: Official Helm chart for RStudio Package Manager -version: 0.5.24 +version: 0.5.25 apiVersion: v2 appVersion: 2024.04.0 icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png diff --git a/charts/rstudio-pm/NEWS.md b/charts/rstudio-pm/NEWS.md index 72402012..491bdc2b 100644 --- a/charts/rstudio-pm/NEWS.md +++ b/charts/rstudio-pm/NEWS.md @@ -1,9 +1,12 @@ # Changelog +## 0.5.25 + +- Update default Posit Package Manager version to 2024.04.0-20 + ## 0.5.24 -- Add a `database` section to the `values.yaml` for setting PostgreSQL password from secrets -- Bump rstudio-library chart version +- Unset the `[Server].Address` default value as this can cause issues when serving from a domain name. ## 0.5.23 diff --git a/charts/rstudio-pm/README.md b/charts/rstudio-pm/README.md index 94276ee1..854ea50d 100644 --- a/charts/rstudio-pm/README.md +++ b/charts/rstudio-pm/README.md @@ -1,6 +1,6 @@ # Posit Package Manager -![Version: 0.5.24](https://img.shields.io/badge/Version-0.5.24-informational?style=flat-square) ![AppVersion: 2024.04.0](https://img.shields.io/badge/AppVersion-2024.04.0-informational?style=flat-square) +![Version: 0.5.25](https://img.shields.io/badge/Version-0.5.25-informational?style=flat-square) ![AppVersion: 2024.04.0](https://img.shields.io/badge/AppVersion-2024.04.0-informational?style=flat-square) #### _Official Helm chart for RStudio Package Manager_ @@ -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.24: +To install the chart with the release name `my-release` at version 0.5.25: ```bash helm repo add rstudio https://helm.rstudio.com -helm upgrade --install my-release rstudio/rstudio-pm --version=0.5.24 +helm upgrade --install my-release rstudio/rstudio-pm --version=0.5.25 ``` To explore other chart versions, take a look at: @@ -187,13 +187,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":{"Address":"http://localhost:4242"}}` | config is a nested map of maps that generates the rstudio-pm.gcfg file | -| database.password | object | `{"secret":"","secretKey":"password"}` | the password section is used for setting the password for PostgreSQL | -| database.password.secret | string | `""` | secret is the name of an existing secret with a database password in it | -| database.password.secretKey | string | `"password"` | secretKey is the key for the secret to use for the database password | -| database.usageDataPassword | object | `{"secret":"","secretKey":"password"}` | the usageDataPassword section is used for setting the usage data password for PostgreSQL | -| database.usageDataPassword.secret | string | `""` | secret is the name of an existing secret with a database password in it | -| database.usageDataPassword.secretKey | string | `"password"` | secretKey is the key for the secret to use for the database password | +| config | object | `{"HTTP":{"Listen":":4242"},"Metrics":{"Enabled":true}}` | 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 | diff --git a/charts/rstudio-pm/values.yaml b/charts/rstudio-pm/values.yaml index e61b25fa..da1396c4 100644 --- a/charts/rstudio-pm/values.yaml +++ b/charts/rstudio-pm/values.yaml @@ -246,8 +246,6 @@ serviceMonitor: # -- config is a nested map of maps that generates the rstudio-pm.gcfg file config: - Server: - Address: http://localhost:4242 HTTP: Listen: :4242 Metrics: