Skip to content

Commit

Permalink
chore(workers): Configure JSON format on logs in workers (#447)
Browse files Browse the repository at this point in the history
Co-authored-by: Marcin Jasion <mjasion@users.noreply.github.com>
  • Loading branch information
mjasion and mjasion authored Jul 22, 2024
1 parent 1cd94f9 commit 624e66f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/studio/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: studio
description: A Helm chart for Kubernetes
type: application
version: 0.16.12
version: 0.16.13
appVersion: "v2.129.0"
maintainers:
- name: iterative
Expand Down
2 changes: 1 addition & 1 deletion charts/studio/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# studio

![Version: 0.16.12](https://img.shields.io/badge/Version-0.16.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.129.0](https://img.shields.io/badge/AppVersion-v2.129.0-informational?style=flat-square)
![Version: 0.16.13](https://img.shields.io/badge/Version-0.16.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v2.129.0](https://img.shields.io/badge/AppVersion-v2.129.0-informational?style=flat-square)

A Helm chart for Kubernetes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ metadata:
name: {{ .Release.Name }}-datachain-worker
data:
CELERY_LOG_LEVEL: "{{ .Values.studioDatachainWorker.logLevel | default "info" | lower }}"
LOG_JSON_FORMATTER: "True"
{{- with .Values.studioDatachainWorker.envVars}}
{{- toYaml . | nindent 2 }}
{{- end }}
1 change: 1 addition & 0 deletions charts/studio/templates/configmap-studio-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ metadata:
name: studio-worker
data:
CELERY_LOG_LEVEL: "{{ .Values.studioWorker.logLevel | default "info" | lower }}"
LOG_JSON_FORMATTER: "True"
{{- with .Values.studioWorker.envVars}}
{{- toYaml . | nindent 2 }}
{{- end }}

0 comments on commit 624e66f

Please sign in to comment.