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
Binary file modified public/icons/charts/alfio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/booklore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/charts/clickhouse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/cronicle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/dolibarr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/fastmcp-server.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/ghost.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/kafka.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/charts/matomo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/metabase.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/ntfy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/strava-statistics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/charts/umami.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions src/data/charts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ export const charts: Chart[] = [
maturity: 'stable',
backup: true,
},
{
name: 'ClickHouse',
slug: 'clickhouse',
description:
'Standalone ClickHouse OLAP database with official images, persistent storage, metrics, ESO, and safety guards.',
maturity: 'beta',
backup: false,
},
{
name: 'RabbitMQ',
slug: 'rabbitmq',
Expand Down Expand Up @@ -105,6 +113,13 @@ export const charts: Chart[] = [
maturity: 'stable',
backup: true,
},
{
name: 'Matomo',
slug: 'matomo',
description: 'Privacy-first analytics with official Matomo image, MySQL, archiver CronJob, Gateway API, and ESO.',
maturity: 'beta',
backup: false,
},
{
name: 'Strapi',
slug: 'strapi',
Expand Down
2 changes: 2 additions & 0 deletions src/data/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const chartCategories: ChartCategory[] = [
{ label: 'Valkey', href: '/docs/charts/valkey', maturity: 'stable' },
{ label: 'Memcached', href: '/docs/charts/memcached', maturity: 'stable' },
{ label: 'Qdrant', href: '/docs/charts/qdrant', maturity: 'stable' },
{ label: 'ClickHouse', href: '/docs/charts/clickhouse', maturity: 'beta' },
],
},
{
Expand Down Expand Up @@ -160,6 +161,7 @@ export const chartCategories: ChartCategory[] = [
{ label: 'Apache Druid', href: '/docs/charts/druid', maturity: 'stable' },
{ label: 'Kibana', href: '/docs/charts/kibana', maturity: 'stable' },
{ label: 'Elasticsearch', href: '/docs/charts/elasticsearch', maturity: 'stable' },
{ label: 'Matomo', href: '/docs/charts/matomo', maturity: 'beta' },
],
},
{
Expand Down
159 changes: 159 additions & 0 deletions src/data/playground-configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,165 @@
// field definitions from values.schema.json.

export const chartConfigs: Record<string, ChartConfig> = {
clickhouse: [
{
name: 'Database',
fields: [
{
label: 'Database',
key: 'clickhouse.database',
type: 'text',
default: 'default',
description: 'Initial database created on empty data dir',
},
{
label: 'User',
key: 'clickhouse.user',
type: 'text',
default: 'default',
description: 'Initial ClickHouse user',
},
{
label: 'Password',
key: 'clickhouse.password',
type: 'text',
default: '',
description: 'Initial password; use a Secret for production',
},
],
},
{
name: 'Storage',
fields: [
{
label: 'Data Size',
key: 'persistence.size',
type: 'text',
default: '20Gi',
description: 'Persistent volume size for /var/lib/clickhouse',
},
{
label: 'Persist Logs',
key: 'logs.persistence.enabled',
type: 'toggle',
default: 'false',
description: 'Store /var/log/clickhouse-server on a separate PVC',
},
],
},
{
name: 'Observability',
collapsible: true,
gateField: 'metrics.enabled',
fields: [
{
label: 'ServiceMonitor',
key: 'metrics.serviceMonitor.enabled',
type: 'toggle',
default: 'false',
description: 'Create Prometheus Operator ServiceMonitor',
},
],
},
{
name: 'Network Policy',
collapsible: true,
gateField: 'networkPolicy.enabled',
fields: [
{
label: 'Egress Policy',
key: 'networkPolicy.egress.enabled',
type: 'toggle',
default: 'false',
description: 'Render explicit egress policy',
},
{
label: 'Extra Egress CIDR',
key: 'networkPolicy.egress.extraEgress[0].to[0].ipBlock.cidr',
type: 'text',
default: '10.0.0.0/8',
description: 'Additional egress destination',
},
],
},
],
matomo: [
{
name: 'Application',
fields: [
{
label: 'Site URL',
key: 'matomo.siteUrl',
type: 'text',
default: 'https://analytics.example.com',
description: 'Public URL used by the archiver',
},
{
label: 'Trusted Host',
key: 'matomo.trustedHost',
type: 'text',
default: 'analytics.example.com',
description: 'Expected external host behind ingress or Gateway API',
},
],
},
{
name: 'Database',
collapsible: true,
fields: [
{
label: 'Bundled MySQL',
key: 'mysql.enabled',
type: 'toggle',
default: 'true',
description: 'Disable to use external MySQL or MariaDB',
},
{
label: 'External Host',
key: 'database.external.host',
type: 'text',
default: '',
description: 'External MySQL/MariaDB host',
},
],
},
{
name: 'Archiver',
collapsible: true,
gateField: 'archiver.enabled',
fields: [
{
label: 'Schedule',
key: 'archiver.schedule',
type: 'text',
default: '5 * * * *',
description: 'Cron schedule for core:archive',
},
],
},
{
name: 'Ingress',
collapsible: true,
gateField: 'ingress.enabled',
fields: [
{
label: 'Hostname',
key: 'ingress.hosts[0].host',
type: 'text',
default: 'analytics.example.com',
description: 'Ingress host',
},
{
label: 'Ingress Class',
key: 'ingress.ingressClassName',
type: 'select',
default: 'nginx',
options: ['', 'nginx', 'traefik'],
description: 'Ingress controller class',
},
],
},
],
generic: [
{
name: 'Workload',
Expand Down
Loading