Skip to content
Merged
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
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.8.28
version: 0.8.29
apiVersion: v2
appVersion: 2026.02.0
icon: https://raw.githubusercontent.com/rstudio/helm/main/images/posit-icon-fullcolor.svg
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.8.29

- Re-enable TensorFlow serving and remove executable path from Connect configuration

## 0.8.28

- Disable TensorFlow serving by default in Connect configuration
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.8.28](https://img.shields.io/badge/Version-0.8.28-informational?style=flat-square) ![AppVersion: 2026.02.0](https://img.shields.io/badge/AppVersion-2026.02.0-informational?style=flat-square)
![Version: 0.8.29](https://img.shields.io/badge/Version-0.8.29-informational?style=flat-square) ![AppVersion: 2026.02.0](https://img.shields.io/badge/AppVersion-2026.02.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.8.28:
To install the chart with the release name `my-release` at version 0.8.29:

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

To explore other chart versions, look at:
Expand Down
11 changes: 5 additions & 6 deletions charts/rstudio-connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ launcher:
tag: ""
# -- The imagePullPolicy for the default initContainer
imagePullPolicy: ""
# -- Optional resources for the default initContainer
# -- Optional resources for the default initContainer
resources: {}
# requests:
# cpu: "128m"
Expand Down Expand Up @@ -446,11 +446,10 @@ config:
# https://docs.posit.co/connect/admin/quarto/
Executable: "/opt/quarto/1.4.557/bin/quarto"
TensorFlow:
Enabled: false
# Note: The `Executable` listed below is only used for Local Execution.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is the comment useful guidance? You could reword it.

# For off-host Execution, TensorFlow versions are defined by the set of Execution Environments
# https://docs.posit.co/connect/admin/tensorflow/
# When using TensorFlow with local execution, define an executable path corresponding to
# the TensorFlow serving binary within your Connect container.
# Executable: "/usr/bin/tensorflow_model_server"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bleh, editor autoformatted and caused linting errors...

# For Off-Host Execution, TensorFlow versions are defined by the set of Execution Environments
# https://docs.posit.co/connect/admin/tensorflow/
Executable: "/usr/bin/tensorflow_model_server"
Enabled: true
# For off-host Execution, TensorFlow versions are defined by the set of Execution Environments https://docs.posit.co/connect/admin/tensorflow/
# When using TensorFlow with local execution, define an executable path corresponding to the TensorFlow serving binary within your Connect container.
# Executable: "/usr/bin/tensorflow_model_server"
Scheduler:
InitTimeout: 5m
Logging:
Expand Down
Loading