diff --git a/src/data/playground-configs.ts b/src/data/playground-configs.ts index df6e714..415a62a 100644 --- a/src/data/playground-configs.ts +++ b/src/data/playground-configs.ts @@ -4325,6 +4325,13 @@ export const chartConfigs: Record = { { name: 'General', fields: [ + { + label: 'Image Tag', + key: 'image.tag', + type: 'text', + default: '2.29.7', + description: 'Pinned n8n image tag', + }, { label: 'Webhook URL', key: 'n8n.webhookUrl', diff --git a/src/pages/docs/charts/n8n.mdx b/src/pages/docs/charts/n8n.mdx index 0d87b68..f9485b1 100644 --- a/src/pages/docs/charts/n8n.mdx +++ b/src/pages/docs/charts/n8n.mdx @@ -225,7 +225,7 @@ backup: | Parameter | Type | Default | Description | | ------------------ | ------ | --------------------- | -------------------- | | `image.repository` | string | `docker.io/n8nio/n8n` | n8n container image. | -| `image.tag` | string | `"2.22.3"` | Image tag. | +| `image.tag` | string | `"2.29.7"` | Image tag. | | `image.pullPolicy` | string | `IfNotPresent` | Image pull policy. | ### n8n Configuration diff --git a/src/pages/playground.astro b/src/pages/playground.astro index d79ec01..91775e1 100644 --- a/src/pages/playground.astro +++ b/src/pages/playground.astro @@ -66,6 +66,7 @@ const siteSyncPlaygroundConfigs: Record = { memos: 'src/data/playground-configs.ts', 'metrics-server': 'src/data/playground-configs.ts', minecraft: 'src/data/playground-configs.ts', + n8n: 'src/data/playground-configs.ts', notediscovery: 'src/data/playground-configs.ts', 'oauth2-proxy': 'src/data/playground-configs.ts', opencut: 'src/data/playground-configs.ts',