Fix Pyroscope config flag: -config.file not -config.path

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-03-26 15:15:46 -07:00
commit 4680e4d4ff
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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"