Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 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 Posit Package Manager
version: 0.5.53
version: 0.20.0
apiVersion: v2
appVersion: 2025.12.0
icon: https://raw.githubusercontent.com/rstudio/helm/main/images/posit-icon-fullcolor.svg
Expand All @@ -18,8 +18,8 @@ dependencies:
repository: https://helm.rstudio.com
annotations:
artifacthub.io/images: |
- name: rstudio-package-manager
image: rstudio/rstudio-package-manager:ubuntu2204-2025.12.0
- name: package-manager
image: posit/package-manager:2025.12.0-ubuntu-24.04
artifacthub.io/license: MIT
artifacthub.io/links: |
- name: RStudio Community
Expand Down
6 changes: 6 additions & 0 deletions charts/rstudio-pm/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.20.0

- BREAKING: Default images now use `posit/package-manager` instead of `rstudio/rstudio-package-manager`
- BREAKING: Image tag format changed from `{os}{version}` (e.g. `ubuntu2204-2025.12.0`) to `{version}-{os}` (e.g. `2025.12.0-ubuntu-24.04`)
- BREAKING: `image.tagPrefix` replaced by `image.os`

## 0.5.53

- Update chart icon to Posit icon
Expand Down
12 changes: 6 additions & 6 deletions charts/rstudio-pm/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Posit Package Manager

![Version: 0.5.53](https://img.shields.io/badge/Version-0.5.53-informational?style=flat-square) ![AppVersion: 2025.12.0](https://img.shields.io/badge/AppVersion-2025.12.0-informational?style=flat-square)
![Version: 0.20.0](https://img.shields.io/badge/Version-0.20.0-informational?style=flat-square) ![AppVersion: 2025.12.0](https://img.shields.io/badge/AppVersion-2025.12.0-informational?style=flat-square)

#### _Official Helm chart for Posit Package Manager_

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

## Installing the chart

To install the chart with the release name `my-release` at version 0.5.53:
To install the chart with the release name `my-release` at version 0.20.0:

```{.bash}
helm repo add rstudio https://helm.rstudio.com
helm upgrade --install my-release rstudio/rstudio-pm --version=0.5.53
helm upgrade --install my-release rstudio/rstudio-pm --version=0.20.0
```

To explore other chart versions, look at:
Expand Down Expand Up @@ -209,9 +209,9 @@ The Helm `config` values are converted into the `rstudio-pm.gcfg` service config
| fullnameOverride | string | `""` | the full name of the release (can be overridden) |
| image.imagePullPolicy | string | `"IfNotPresent"` | the imagePullPolicy for the main pod image |
| image.imagePullSecrets | list | `[]` | an array of kubernetes secrets for pulling the main pod image from private registries |
| image.repository | string | `"rstudio/rstudio-package-manager"` | the repository to use for the main pod image |
| image.tag | string | `""` | the tag to use for the main pod image |
| image.tagPrefix | string | `"ubuntu2204-"` | A tag prefix for the server image (common selection: ubuntu2204-). Only used if tag is not defined |
| image.os | string | `"ubuntu-24.04"` | The OS version for the image tag (e.g. ubuntu-24.04, ubuntu-22.04). Only used if tag is not defined |
| image.repository | string | `"posit/package-manager"` | the repository to use for the main pod image |
| image.tag | string | `""` | the tag to use for the main pod image. Overrides os and appVersion |
| ingress.annotations | object | `{}` | |
| ingress.enabled | bool | `false` | |
| ingress.hosts | string | `nil` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/rstudio-pm/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ spec:
containers:
- name: rspm
{{- $defaultVersion := .Values.versionOverride | default $.Chart.AppVersion }}
{{- $imageTag := .Values.image.tag | default (printf "%s%s" .Values.image.tagPrefix $defaultVersion )}}
{{- $imageTag := .Values.image.tag | default (printf "%s-%s" $defaultVersion .Values.image.os )}}
image: "{{ .Values.image.repository }}:{{ $imageTag }}"
env:
{{- include "rstudio-library.license-env" (dict "license" ( .Values.license ) "product" ("rstudio-pm") "envVarPrefix" ("RSPM") "fullName" (include "rstudio-pm.fullname" .)) | nindent 8 }}
Expand Down
8 changes: 4 additions & 4 deletions charts/rstudio-pm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ sharedStorage:

image:
# -- the repository to use for the main pod image
repository: rstudio/rstudio-package-manager
# -- A tag prefix for the server image (common selection: ubuntu2204-). Only used if tag is not defined
tagPrefix: ubuntu2204-
# -- the tag to use for the main pod image
repository: posit/package-manager
# -- The OS version for the image tag (e.g. ubuntu-24.04, ubuntu-22.04). Only used if tag is not defined
os: "ubuntu-24.04"
# -- the tag to use for the main pod image. Overrides os and appVersion
tag: ""
# -- the imagePullPolicy for the main pod image
imagePullPolicy: IfNotPresent
Expand Down
Loading