Skip to content

Commit 40d96d4

Browse files
logfire-helm-chart-automation[bot]github-actions[bot]bruno-espino
authored
Update appVersion to df347376 (#147)
## Summary - Removed IPC cache and proxy deployments ## Upgrade notes No special upgrade steps are required for this automated appVersion bump. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Espino <brunoespi7@gmail.com>
1 parent bd4108f commit 40d96d4

12 files changed

Lines changed: 17 additions & 474 deletions

charts/logfire/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apiVersion: v2
2-
version: 0.13.6
2+
version: 0.13.7
33
name: logfire
44
description: Helm chart for self-hosted Pydantic Logfire
55

6-
appVersion: "80bc3daa"
6+
appVersion: "f355af55"
77

88
dependencies:
99
- name: postgresql

charts/logfire/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# logfire
22

3-
![Version: 0.13.6](https://img.shields.io/badge/Version-0.13.6-informational?style=flat-square) ![AppVersion: 80bc3daa](https://img.shields.io/badge/AppVersion-80bc3daa-informational?style=flat-square)
3+
![Version: 0.13.7](https://img.shields.io/badge/Version-0.13.7-informational?style=flat-square) ![AppVersion: f355af55](https://img.shields.io/badge/AppVersion-f355af55-informational?style=flat-square)
44

55
Helm chart for self-hosted Pydantic Logfire
66

@@ -265,7 +265,7 @@ istio:
265265
```
266266

267267
This automatically sets `sidecar.istio.io/inject: "false"` on:
268-
`logfire-service`, `logfire-ff-proxy-cache-byte`, `logfire-ff-proxy-cache-ipc`, `logfire-backend-migrations`, `logfire-ff-migrations`, `logfire-redis`, and `logfire-otel-collector`.
268+
`logfire-service`, `logfire-ff-proxy-cache-byte`, `logfire-backend-migrations`, `logfire-ff-migrations`, `logfire-redis`, and `logfire-otel-collector`.
269269

270270
You can still override labels per workload using `<workload>.podLabels`.
271271

@@ -658,7 +658,7 @@ Before diving deeper, verify these common configuration issues:
658658
| ingress.secretName | string | `"logfire-frontend-cert"` | TLS Secret name if you want to do a custom one |
659659
| ingress.tls | bool | `false` | Enable TLS/HTTPS. Required for correct CORS behavior. |
660660
| istio | object | `{"disableSidecarOnKnownWorkloads":false}` | Istio compatibility options |
661-
| istio.disableSidecarOnKnownWorkloads | bool | `false` | When enabled, automatically sets `sidecar.istio.io/inject: "false"` on known-sensitive workloads: logfire-service, logfire-ff-proxy-cache-{byte,filter,ipc}, logfire-backend-migrations, logfire-ff-migrations, logfire-redis, and logfire-otel-collector. You can still override per workload via `<workload>.podLabels`. |
661+
| istio.disableSidecarOnKnownWorkloads | bool | `false` | When enabled, automatically sets `sidecar.istio.io/inject: "false"` on known-sensitive workloads: logfire-service, logfire-ff-proxy-cache-byte, logfire-backend-migrations, logfire-ff-migrations, logfire-redis, and logfire-otel-collector. You can still override per workload via `<workload>.podLabels`. |
662662
| logfire-ai-gateway | object | disabled | Autoscaling & resources for the `logfire-ai-gateway` pod |
663663
| logfire-ai-gateway.enabled | bool | `false` | Enable the AI gateway service |
664664
| logfire-dex | object | `{"annotations":{},"config":{"connectors":[],"enablePasswordDB":true,"storage":{"config":{"database":"dex","host":"logfire-postgres","password":"postgres","port":5432,"ssl":{"mode":"disable"},"user":"postgres"},"type":"postgres"}},"labels":{},"podAnnotations":{},"podLabels":{},"service":{"annotations":{}}}` | Configuration, autoscaling & resources for `logfire-dex` deployment |

charts/logfire/README.md.gotmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ istio:
266266
```
267267

268268
This automatically sets `sidecar.istio.io/inject: "false"` on:
269-
`logfire-service`, `logfire-ff-proxy-cache-byte`, `logfire-ff-proxy-cache-ipc`, `logfire-backend-migrations`, `logfire-ff-migrations`, `logfire-redis`, and `logfire-otel-collector`.
269+
`logfire-service`, `logfire-ff-proxy-cache-byte`, `logfire-backend-migrations`, `logfire-ff-migrations`, `logfire-redis`, and `logfire-otel-collector`.
270270

271271
You can still override labels per workload using `<workload>.podLabels`.
272272

charts/logfire/templates/_helpers.tpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,6 @@ Custom labels for workloads pods
806806
{{- $knownWorkloads := list
807807
"logfire-service"
808808
"logfire-ff-proxy-cache-byte"
809-
"logfire-ff-proxy-cache-ipc"
810809
"logfire-backend-migrations"
811810
"logfire-ff-migrations"
812811
"logfire-redis"

charts/logfire/templates/logfire-ff-cache-ipc.yaml

Lines changed: 0 additions & 132 deletions
This file was deleted.

charts/logfire/templates/logfire-ff-config.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ data:
1010
RUST_LOG: "info"
1111
FF_SEND_TO_LOGFIRE: "true"
1212
FF_FORCE_CONSOLE_LOGGING: "true"
13+
FF_COLLECT_STATISTICS_FROM_ZONE_MAP_INDEXES: "false"
1314
FF_CACHE_OBJECT_STORE_URI: "{{ include "logfire.scheme" . }}://logfire-ff-cache-byte:{{ include "logfire.port" (dict "port" 9001 "root" .) }}"
1415
FF_SHARED_REDIS_DSN: {{ .Values.redisDsn }}
1516
FF_OBJECT_STORE_URI: {{ .Values.objectStore.uri }}
@@ -20,7 +21,6 @@ data:
2021
FF_TLS_KEY_PATH: "/etc/tls/tls.key"
2122
FF_TLS_CLIENT_ENABLE: "true"
2223
FF_TLS_CLIENT_CA_PATH: "/etc/logfire/incluster-ca/ca.crt"
23-
FF_TLS_CLIENT_SNI_HOSTNAME: "logfire-ff-query-worker"
2424
FF_TLS_CLIENT_PORT: {{ .Values.inClusterTls.httpsPort | quote }}
2525
{{- end }}
2626

@@ -34,10 +34,9 @@ metadata:
3434
{{- include "logfire.labels" . | nindent 4 }}
3535
app.kubernetes.io/component: logfire-ff-config
3636
data:
37-
FF_IPC_CACHE_URI: "{{ include "logfire.scheme" . }}://logfire-ff-cache-ipc:{{ include "logfire.port" (dict "port" 9001 "root" .) }}"
38-
FF_IPC_CACHE_HOT_FILE_AGE_MINUTES: "30"
39-
FF_IPC_CACHE_SMALL_FILE_SIZE_MB: "5"
40-
FF_EXTERNAL_TABLES_PG_ENABLED_TABLES: "logfire.annotations,logfire.experiments"
37+
FF_DISTRIBUTED_CHANCE: "0"
38+
FF_RETRY_FAILED_DISTRIBUTED_QUERIES: "false"
39+
FF_EXTERNAL_TABLES_PG_ENABLED_TABLES: "logfire.annotations,logfire.experiments,logfire.datasets,logfire.dataset_cases"
4140

4241
---
4342

@@ -52,7 +51,6 @@ data:
5251
FF_WRITE_INDEX_THRESHOLD_BYTES: "1048576"
5352
FF_PARQUET_WRITER_MAX_ROWS_PER_ROW_GROUP: "100000"
5453
FF_PARQUET_WRITER_MAX_ROWS_PER_PAGE: "15000"
55-
FF_CACHE_ARROW_IPC_CHANCE: "0.0"
5654

5755
---
5856

charts/logfire/templates/logfire-ff-proxy-cache-ipc-config.yaml

Lines changed: 0 additions & 81 deletions
This file was deleted.

0 commit comments

Comments
 (0)