Skip to content

Commit

Permalink
Fix api-server log level env var
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiimk committed Jul 24, 2024
1 parent fb45971 commit 8c0f931
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/kamu-api-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: kamu-api-server
description: API server component of the Kamu Compute Node
type: application
version: 0.29.4
version: 0.29.5
appVersion: "0.29.1"
home: https://kamu.dev
icon: https://www.kamu.dev/images/kamu_logo_icon_bg_square.png
Expand Down
4 changes: 2 additions & 2 deletions charts/kamu-api-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ spec:
env:
- name: RUST_BACKTRACE
value: "1"
- name: RUST_LOG
value: {{ .Values.app.logLevel | quote }}
{{- if .Values.app.awsCredentials.enabled }}
{{- $secretName := include "kamu-api-server.awsCredentialsSecretName" . }}
- name: AWS_ENDPOINT
Expand Down Expand Up @@ -89,6 +87,8 @@ spec:
env:
- name: RUST_BACKTRACE
value: "1"
- name: RUST_LOG
value: {{ .Values.app.logLevel | quote }}
{{- range $key, $value := .Values.extraEnv }}
- name: {{ $key | quote }}
value: {{ $value | quote }}
Expand Down

0 comments on commit 8c0f931

Please sign in to comment.