my prefect server setup prefect-metrics.waow.tech
python orchestration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix grafana helm values to match chart 7.x template expectations

- extraContainerVolumeMounts doesn't exist in this chart; use
extraVolumeMounts (list, iterated with range)
- extraContainers is templated with tpl (expects string), not toYaml
(list) — use YAML literal block scalar

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz b1ddddb2 9a455508

+3 -3
+3 -3
deploy/monitoring-values.yaml
··· 82 82 # a busybox sidecar refreshes the snapshot every 60s so the DuckDB plugin 83 83 # can't take an exclusive lock on the production database. 84 84 85 - extraContainerVolumeMounts: 85 + extraVolumeMounts: 86 86 - name: duckdb-plugin 87 87 mountPath: /var/lib/grafana/plugins/motherduck-duckdb-datasource 88 88 readOnly: true ··· 108 108 - name: analytics-snapshot 109 109 mountPath: /analytics-snap 110 110 111 - extraContainers: 112 - # refresh snapshot every 60s — grafana reads the copy, never the live DB 111 + # extraContainers is templated as a string in grafana chart 7.x (tpl . $) 112 + extraContainers: | 113 113 - name: snapshot-sync 114 114 image: busybox:1 115 115 command: ["sh", "-c"]