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
7 changes: 7 additions & 0 deletions src/data/playground-configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3473,6 +3473,13 @@ export const chartConfigs: Record<string, ChartConfig> = {
{
name: 'Runtime',
fields: [
{
label: 'Image Tag',
key: 'image.tag',
type: 'text',
default: '5.2.0',
description: 'Pinned openHAB image tag',
},
{
label: 'Timezone',
key: 'env.TZ',
Expand Down
12 changes: 11 additions & 1 deletion src/pages/docs/charts/openhab.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ kubectl scale statefulset my-openhab -n openhab --replicas=1
| Parameter | Description | Default |
| ------------------ | ---------------- | --------------------------- |
| `image.repository` | Image repository | `docker.io/openhab/openhab` |
| `image.tag` | Image tag | `5.1.4` |
| `image.tag` | Image tag | `5.2.0` |
| `image.pullPolicy` | Pull policy | `IfNotPresent` |

### Workload
Expand Down Expand Up @@ -802,6 +802,16 @@ gateway:
| `backup.s3.secretKey` | S3 secret key | `""` |
| `backup.s3.existingSecret` | Existing Secret name (keys: `access-key`, `secret-key`) | `""` |

## Upgrade Notes

openHAB `5.2.0` is a stable feature release for the 5.x line. The upstream
release notes list new add-ons, runtime/UI enhancements, and several breaking
changes that may require manual action after upgrade. Back up the `userdata`,
`conf`, and `addons` PVCs before upgrading. Review any affected rules, UI
layouts, persistence queries, voice IDs, and add-ons before rolling production
deployments. openHAB 5.x still requires Java 21, which is provided by the
official container image used by this chart.

## Troubleshooting

### Pod stuck in Init state for several minutes
Expand Down