diff --git a/charts/rstudio-workbench/Chart.yaml b/charts/rstudio-workbench/Chart.yaml index 266f67037..250f25516 100644 --- a/charts/rstudio-workbench/Chart.yaml +++ b/charts/rstudio-workbench/Chart.yaml @@ -1,6 +1,6 @@ name: rstudio-workbench description: Official Helm chart for Posit Workbench -version: 0.11.2 +version: 0.11.3 apiVersion: v2 appVersion: 2026.04.0 icon: diff --git a/charts/rstudio-workbench/NEWS.md b/charts/rstudio-workbench/NEWS.md index 65eb64ba5..091b23f50 100644 --- a/charts/rstudio-workbench/NEWS.md +++ b/charts/rstudio-workbench/NEWS.md @@ -1,5 +1,7 @@ # Changelog +## 0.11.3 +- correct job.tpl to check suppressStdinAnnotation instead of limitStdinAnnotation, fixing issue introduced in #842 ## 0.11.2 diff --git a/charts/rstudio-workbench/README.md b/charts/rstudio-workbench/README.md index c84eb1053..dae89a355 100644 --- a/charts/rstudio-workbench/README.md +++ b/charts/rstudio-workbench/README.md @@ -1,6 +1,6 @@ # Posit Workbench -![Version: 0.11.2](https://img.shields.io/badge/Version-0.11.2-informational?style=flat-square) ![AppVersion: 2026.04.0](https://img.shields.io/badge/AppVersion-2026.04.0-informational?style=flat-square) +![Version: 0.11.3](https://img.shields.io/badge/Version-0.11.3-informational?style=flat-square) ![AppVersion: 2026.04.0](https://img.shields.io/badge/AppVersion-2026.04.0-informational?style=flat-square) #### _Official Helm chart for Posit Workbench_ @@ -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.11.2: +To install the chart with the release name `my-release` at version 0.11.3: ```{.bash} helm repo add rstudio https://helm.rstudio.com -helm upgrade --install my-release rstudio/rstudio-workbench --version=0.11.2 +helm upgrade --install my-release rstudio/rstudio-workbench --version=0.11.3 ``` To explore other chart versions, look at: diff --git a/charts/rstudio-workbench/files/job.tpl b/charts/rstudio-workbench/files/job.tpl index ad24d4e58..80be76f97 100644 --- a/charts/rstudio-workbench/files/job.tpl +++ b/charts/rstudio-workbench/files/job.tpl @@ -47,7 +47,7 @@ spec: {{- $i = add $i 1 }} {{- end }} {{- end }} - {{- if not $templateData.pod.limitStdinAnnotation }} + {{- if not $templateData.pod.suppressStdinAnnotation }} stdin: {{ toYaml .Job.stdin | indent 8 | trimPrefix (repeat 8 " ") }} {{- end }} user: {{ toYaml .Job.user }}