Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions charts/osdfir-infrastructure/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
dependencies:
- name: timesketch
repository: file://charts/timesketch
version: 2.4.5
version: 2.4.6
- name: yeti
repository: file://charts/yeti
version: 2.2.5
version: 2.2.6
- name: openrelik
repository: file://charts/openrelik
version: 2.2.7
Expand All @@ -14,5 +14,5 @@ dependencies:
- name: hashr
repository: file://charts/hashr
version: 2.0.1
digest: sha256:d5a33c46ff1a1302773f88e477aa08019b14a9d3366070032f21f2844a74ffb4
generated: "2026-02-05T15:59:04.340371-08:00"
digest: sha256:df3e601338af062202031f93fadfaebea87462a08cd7f093a93e7903e09e47fe
generated: "2026-02-09T13:50:14.474878-08:00"
6 changes: 3 additions & 3 deletions charts/osdfir-infrastructure/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: osdfir-infrastructure
version: 2.7.7
version: 2.7.8
description: A Helm chart for Open Source Digital Forensics Kubernetes deployments.
keywords:
- timesketch
Expand All @@ -14,11 +14,11 @@ dependencies:
- condition: global.timesketch.enabled
name: timesketch
repository: file://charts/timesketch
version: 2.4.5
version: 2.4.6
- condition: global.yeti.enabled
name: yeti
repository: file://charts/yeti
version: 2.2.5
version: 2.2.6
- condition: global.openrelik.enabled
name: openrelik
repository: file://charts/openrelik
Expand Down
2 changes: 1 addition & 1 deletion charts/osdfir-infrastructure/charts/timesketch/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: timesketch
version: 2.4.5
version: 2.4.6
description: A Helm chart for Timesketch Kubernetes deployments.
keywords:
- timesketch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ spec:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/vertex/vertex-sa.json
{{- end }}
- name: ENABLE_STRUCTURED_LOGGING
value: "true"
volumeMounts:
- mountPath: /mnt/timesketchvolume
name: timesketchvolume
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ spec:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /etc/vertex/vertex-sa.json
{{- end }}
- name: ENABLE_STRUCTURED_LOGGING
value: "true"
volumeMounts:
- mountPath: /mnt/timesketchvolume
name: timesketchvolume
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["sh", "-c", "exec celery -A timesketch.lib.tasks worker --loglevel={{ .Values.config.logLevel }}"]
env:
- name: ENABLE_STRUCTURED_LOGGING
value: "true"
{{- if .Values.securityContext.enabled }}
securityContext:
capabilities:
Expand Down
2 changes: 1 addition & 1 deletion charts/osdfir-infrastructure/charts/timesketch/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ image:
pullPolicy: IfNotPresent
## @param image.tag Overrides the image tag whose default is the chart appVersion
##
tag: "20251219"
tag: "20260209"
## @section Timesketch Configuration Parameters
## ref: https://github.com/google/timesketch/blob/master/data/timesketch.conf
##
Expand Down
2 changes: 1 addition & 1 deletion charts/osdfir-infrastructure/charts/yeti/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: yeti
version: 2.2.5
version: 2.2.6
description: A Helm chart for Yeti Kubernetes deployments.
keywords:
- yeti
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ data:
server {
listen 9000;
listen [::]:9000;
client_max_body_size 0m;
root /www;

location /api/v2 {
Expand Down