feat: Disable access_logs by default

This commit is contained in:
Dries De Peuter 2023-06-12 13:45:20 +02:00
parent 84dd8a6300
commit 838f18395c
No known key found for this signature in database
2 changed files with 6 additions and 0 deletions

View file

@ -11,6 +11,10 @@ data:
listen 8080;
server_name _;
{{- if not .Values.webserver.config.accessLogEnabled }}
access_log off;
{{- end }}
location /.well-known/ {
default_type application/json;
root /usr/share/nginx/html;

View file

@ -30,6 +30,8 @@ webserver:
requests:
cpu: 10m
memory: 10Mi
config:
accessLogEnabled: false
imagePullSecrets: []