From d3b5bc51b91832ea72bd4a5237d88a0be0f85faf Mon Sep 17 00:00:00 2001 From: Ryan VanGundy Date: Sun, 27 Jul 2025 11:35:04 -0400 Subject: [PATCH] fix(template): Remove quickwit for CSPs The way we configure quickwit to use the local volume storage is throwing security flags. This PR disables quickwit by default for CSPs. --- contexts/_template/blueprint.jsonnet | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/contexts/_template/blueprint.jsonnet b/contexts/_template/blueprint.jsonnet index d3ccc06b0..bf5d8ff2e 100644 --- a/contexts/_template/blueprint.jsonnet +++ b/contexts/_template/blueprint.jsonnet @@ -209,17 +209,21 @@ local repositoryUrl = if rawProvider == "local" then "http://git.test/git/" + hl components: [ "fluentd", "fluentd/filters/otel", + "fluentd/outputs/stdout" + ] + (if provider == "local" then [ "fluentd/outputs/quickwit", "quickwit", - "quickwit/pvc", + "quickwit/pvc" + ] else []) + [ "grafana", "grafana/ingress", "grafana/prometheus", "grafana/node", "grafana/kubernetes", - "grafana/flux", + "grafana/flux" + ] + (if provider == "local" then [ "grafana/quickwit" - ], + ] else []), dependsOn: ["csi", "ingress"] } ],