Skip to content

Commit

Permalink
Introduce RUST_LOG env var
Browse files Browse the repository at this point in the history
  • Loading branch information
TheiLLeniumStudios committed Jan 17, 2024
1 parent 9f628b4 commit 5841986
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/zumble/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
name: zumble
type: application
version: 1.0.0
version: 1.1.0
appVersion: v0.1.3
3 changes: 3 additions & 0 deletions charts/zumble/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ spec:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: RUST_LOG
value: {{ .Values.logLevel }}
envFrom:
- secretRef:
name: {{ include "zumble.fullname" . }}
Expand Down
2 changes: 2 additions & 0 deletions charts/zumble/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ tolerations: []

affinity: {}

logLevel: info

api:
username: admin
password: changeme

0 comments on commit 5841986

Please sign in to comment.