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
9 changes: 8 additions & 1 deletion src/data/playground-configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1599,6 +1599,13 @@ export const chartConfigs: Record<string, ChartConfig> = {
{
name: 'Actions',
fields: [
{
label: 'Image Tag',
key: 'image.tag',
type: 'text',
default: '3000.16.2',
description: 'Pinned OliveTin image tag',
},
{
label: 'HTTP Port',
key: 'olivetin.port',
Expand Down Expand Up @@ -1630,7 +1637,7 @@ export const chartConfigs: Record<string, ChartConfig> = {
label: 'Init Image Tag',
key: 'configInit.image.tag',
type: 'text',
default: '1.37.0',
default: '1.37',
description: 'BusyBox image tag for config bootstrap',
},
],
Expand Down
9 changes: 8 additions & 1 deletion src/pages/docs/charts/olivetin.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ externalSecrets:
| Parameter | Type | Default | Description |
| ------------------ | ------ | ------------------------------ | ------------------------------------ |
| `image.repository` | string | `docker.io/jamesread/olivetin` | OliveTin container image. |
| `image.tag` | string | `"3000.14.0"` | Image tag. |
| `image.tag` | string | `"3000.16.2"` | Image tag. |
| `image.pullPolicy` | string | `IfNotPresent` | Image pull policy. |
| `imagePullSecrets` | array | `[]` | Pull secrets for private registries. |

Expand Down Expand Up @@ -328,6 +328,13 @@ The `config` block supports the full OliveTin configuration schema. Key action o

See the [full OliveTin configuration reference](https://docs.olivetin.app/config.html) for all available options.

## Upgrade Notes

OliveTin `3000.16.2` is a bugfix release focused on Windows packaging and
upstream unit test stability. Upstream reports no upgrade warnings or breaking
changes between `3000.16.1` and `3000.16.2`; keep chart-managed config and any
persistent data paths unchanged when rolling production deployments.

### Metrics

| Parameter | Type | Default | Description |
Expand Down
1 change: 1 addition & 0 deletions src/pages/playground.astro
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ const siteSyncPlaygroundConfigs: Record<string, string> = {
'metrics-server': 'src/data/playground-configs.ts',
notediscovery: 'src/data/playground-configs.ts',
'oauth2-proxy': 'src/data/playground-configs.ts',
olivetin: 'src/data/playground-configs.ts',
opencut: 'src/data/playground-configs.ts',
openhab: 'src/data/playground-configs.ts',
'openreel-video': 'src/data/playground-configs.ts',
Expand Down