Skip to content

Commit

Permalink
Merge pull request #639 from rstudio/kegs/rhel-startup-script
Browse files Browse the repository at this point in the history
Add support for RHEL in Connect's prestart.bash
  • Loading branch information
dbkegley authored Jan 21, 2025
2 parents 6ac3842 + 7aabbdc commit 775b1e1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/rstudio-connect/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rstudio-connect
description: Official Helm chart for Posit Connect
version: 0.7.19
version: 0.7.20
apiVersion: v2
appVersion: 2024.12.0
icon: https://rstudio.com/wp-content/uploads/2018/10/RStudio-Logo-Flat.png
Expand Down
4 changes: 4 additions & 0 deletions charts/rstudio-connect/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.7.20

- `prestart.bash` startup scripts now support RHEL

## 0.7.19

- Allow overriding the default content Job resource requests/limits settings via the values file
Expand Down
6 changes: 3 additions & 3 deletions charts/rstudio-connect/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Posit Connect

![Version: 0.7.19](https://img.shields.io/badge/Version-0.7.19-informational?style=flat-square) ![AppVersion: 2024.12.0](https://img.shields.io/badge/AppVersion-2024.12.0-informational?style=flat-square)
![Version: 0.7.20](https://img.shields.io/badge/Version-0.7.20-informational?style=flat-square) ![AppVersion: 2024.12.0](https://img.shields.io/badge/AppVersion-2024.12.0-informational?style=flat-square)

#### _Official Helm chart for Posit Connect_

Expand Down Expand Up @@ -30,11 +30,11 @@ To ensure reproducibility in your environment and insulate yourself from future

## Installing the chart

To install the chart with the release name `my-release` at version 0.7.19:
To install the chart with the release name `my-release` at version 0.7.20:

```{.bash}
helm repo add rstudio https://helm.rstudio.com
helm upgrade --install my-release rstudio/rstudio-connect --version=0.7.19
helm upgrade --install my-release rstudio/rstudio-connect --version=0.7.20
```

To explore other chart versions, look at:
Expand Down
7 changes: 6 additions & 1 deletion charts/rstudio-connect/prestart.bash
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,13 @@ main() {
/usr/local/share/ca-certificates/Kubernetes/cert-Kubernetes.crt 2>&1 | _indent

_logf 'Updating CA certificates'
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
DIST=$(cat /etc/os-release | grep "^ID=" -E -m 1 | cut -c 4-10 | sed 's/"//g')
if [[ $DIST == "ubuntu" ]]; then
update-ca-certificates 2>&1 | _indent
elif [[ $DIST == "rhel" || $DIST == "almalinux" || $DIST == "rocky" ]]; then
update-ca-trust 2>&1 | _indent
fi

_logf 'Replacing process with %s' "${startup_script}"
exec "${startup_script}"
Expand Down

0 comments on commit 775b1e1

Please sign in to comment.