From f934948f7a86cca1cca3ab397c0aec688fa6886b Mon Sep 17 00:00:00 2001 From: bguenn2s <73934381+bguenn2s@users.noreply.github.com> Date: Tue, 5 May 2026 16:00:32 +0200 Subject: [PATCH 1/2] fix(workbench): correct job.tpl to check suppressStdinAnnotation instead of limitStdinAnnotation In PR #842, the values.yaml key was renamed from limitStdinAnnotation to suppressStdinAnnotation during review, but the corresponding condition in job.tpl was not updated to match. As a result, the guard always evaluates the wrong key and the stdin annotation is written unconditionally, regardless of the configured value. --- charts/rstudio-workbench/files/job.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }} From 18698d17fd0db3df4cb52f408ce85fc32597b757 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Wed, 13 May 2026 10:29:13 +0200 Subject: [PATCH 2/2] fix CI/CD issues --- charts/rstudio-workbench/NEWS.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/charts/rstudio-workbench/NEWS.md b/charts/rstudio-workbench/NEWS.md index f28b83429..1d5f3ce1b 100644 --- a/charts/rstudio-workbench/NEWS.md +++ b/charts/rstudio-workbench/NEWS.md @@ -1,5 +1,8 @@ # Changelog +## 0.20.2 +- correct job.tpl to check `suppressStdinAnnotation` instead of `limitStdinAnnotation` + to supress stdin annotation from pod metadata (#842) ## 0.20.1