From 4680e4d4ff377f2890b95d6aa279adab2e4566b0 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Thu, 26 Mar 2026 15:15:46 -0700 Subject: [PATCH] Fix Pyroscope config flag: -config.file not -config.path Co-Authored-By: Claude Opus 4.6 (1M context) --- argocd/manifests/pyroscope/statefulset.yaml | 2 +- containers/pyroscope/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/argocd/manifests/pyroscope/statefulset.yaml b/argocd/manifests/pyroscope/statefulset.yaml index 5da57f4..e31414b 100644 --- a/argocd/manifests/pyroscope/statefulset.yaml +++ b/argocd/manifests/pyroscope/statefulset.yaml @@ -24,7 +24,7 @@ spec: - name: pyroscope image: grafana/pyroscope:kustomized args: - - -config.path=/etc/pyroscope/config.yaml + - -config.file=/etc/pyroscope/config.yaml ports: - name: http containerPort: 4040 diff --git a/containers/pyroscope/default.nix b/containers/pyroscope/default.nix index d465414..950d0bb 100644 --- a/containers/pyroscope/default.nix +++ b/containers/pyroscope/default.nix @@ -148,7 +148,7 @@ pkgs.dockerTools.buildLayeredImage { config = { Entrypoint = [ "${pyroscope}/bin/pyroscope" ]; - Cmd = [ "-config.path=/etc/pyroscope/config.yaml" ]; + Cmd = [ "-config.file=/etc/pyroscope/config.yaml" ]; Env = [ "SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt" "TZDIR=${pkgs.tzdata}/share/zoneinfo"