Skip to content
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ description: A Helm chart for Kubernetes
type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 5.1.0
version: 5.1.1
# This is the version number of the application being deployed. This version
# number should be incremented each time you make changes to the application.
appVersion: 4.4.0
appVersion: 4.4.1
dependencies:
- name: postgresql
condition: postgresql.enabled
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Helm chart for Kubernetes

![Version: 5.1.0](https://img.shields.io/badge/Version-5.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.4.0](https://img.shields.io/badge/AppVersion-4.4.0-informational?style=flat-square)
![Version: 5.1.1](https://img.shields.io/badge/Version-5.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.4.1](https://img.shields.io/badge/AppVersion-4.4.1-informational?style=flat-square)

## CI/CD

Expand Down
1 change: 1 addition & 0 deletions templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ data:
# Default is always "True" on the server. Change to "False" in prod.
DEBUG: "{{ .Values.debug }}"
LOG_LEVEL: "{{ upper .Values.logLevel }}"
USE_LOG_FILE: "{{ .Values.logsStorageAppstore.createPVC | toString }}"
OAUTH_DB_DIR: /var/lib/sqlite3
OAUTH_DB_FILE: DATABASE.sqlite3
ACCOUNT_DEFAULT_HTTP_PROTOCOL: "{{ .Values.ACCOUNT_DEFAULT_HTTP_PROTOCOL }}"
Expand Down
5 changes: 5 additions & 0 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ spec:
configMapKeyRef:
key: LOG_LEVEL
name: {{ include "appstore.fullname" . }}-env
- name: USE_LOG_FILE
valueFrom:
configMapKeyRef:
key: USE_LOG_FILE
name: {{ include "appstore.fullname" . }}-env
- name: DEBUG
valueFrom:
configMapKeyRef:
Expand Down