Skip to content

Commit

Permalink
Merge pull request #48 from rstudio/fix-rsw
Browse files Browse the repository at this point in the history
Fix rsw
  • Loading branch information
colearendt authored Sep 10, 2021
2 parents bf49d98 + 4f80b2e commit 62a7490
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/rstudio-workbench/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rstudio-workbench
description: Official Helm chart for RStudio Workbench
version: 0.4.2
version: 0.4.3
apiVersion: v2
appVersion: 1.4.1717-3
icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png
Expand Down
11 changes: 11 additions & 0 deletions charts/rstudio-workbench/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 0.4.3

- BUGFIX: The load-balancer sidecar container was not selecting app labels properly. This is now fixed. It could have been causing issues in load-balanced setups

# 0.4.2

- BUGFIX: session configuration is now mounted to the proper location on session pods
- BUGFIX: Prometheus annotations are now properly defined (they were using the wrong port)
- BUGFIX: The Graphite Exporter regex had a bug that did not handle certain hostnames
- Customizing the graphite exporter "mapping.yaml" is now configurable by defining `.Values.prometheusExporter.mappingYaml`

# 0.4.1

- Update docs
Expand Down
6 changes: 3 additions & 3 deletions charts/rstudio-workbench/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RStudio Workbench

![Version: 0.4.2](https://img.shields.io/badge/Version-0.4.2-informational?style=flat-square) ![AppVersion: 1.4.1717-3](https://img.shields.io/badge/AppVersion-1.4.1717--3-informational?style=flat-square)
![Version: 0.4.3](https://img.shields.io/badge/Version-0.4.3-informational?style=flat-square) ![AppVersion: 1.4.1717-3](https://img.shields.io/badge/AppVersion-1.4.1717--3-informational?style=flat-square)

#### _Official Helm chart for RStudio Workbench_

Expand All @@ -23,11 +23,11 @@ As a result, please:

## Installing the Chart

To install the chart with the release name `my-release` at version 0.4.2:
To install the chart with the release name `my-release` at version 0.4.3:

```bash
helm repo add rstudio https://helm.rstudio.com
helm install my-release rstudio/rstudio-workbench --version=0.4.2
helm install my-release rstudio/rstudio-workbench --version=0.4.3
```

## Required Configuration
Expand Down
4 changes: 2 additions & 2 deletions charts/rstudio-workbench/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ containers:
{{- toYaml .Values.loadBalancer.env | nindent 2 }}
{{- end }}
args:
- "{{ include "rstudio-workbench.fullname" . }}"
- "{{ include "rstudio-workbench.name" . }}"
- "{{ $.Release.Namespace }}"
- "/mnt/load-balancer/rstudio/"
- "{{ .Values.loadBalancer.sleepDuration }}"
Expand Down Expand Up @@ -343,7 +343,7 @@ app.kubernetes.io/instance: {{ .Release.Name }}
{{ end }}

{{- define "rstudio-workbench.annotations" -}}
{{- range $key,$value := $.Values.service.annotations -}}
{{- range $key,$value := .Values.service.annotations -}}
{{ $key }}: {{ $value | quote }}
{{ end }}
{{- end -}}
Expand Down

0 comments on commit 62a7490

Please sign in to comment.