Commit 0536fb2 1 parent 873c09f commit 0536fb2 Copy full SHA for 0536fb2
File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -490,6 +490,8 @@ yaml) |
490
490
| `faasnetes.resources` | Resource limits and requests for faas-netes container | See [values.yaml](./values.yaml) |
491
491
| `faasnetes.writeTimeout` | Write timeout for the faas-netes API | `""` (defaults to gateway.writeTimeout) |
492
492
| `faasnetesPro.image` | Container image used for faas-netes when `openfaasPro=true` | See [values.yaml](./values.yaml) |
493
+ | `faasnetesPro.logs.format` | Set the log format, supports `console` or `json` | `console` |
494
+ | `faasnetesPro.logs.debug` | Print debug logs | `false` |
493
495
| `operator.create` | Use the OpenFaaS operator CRD controller, default uses faas-netes as the Kubernetes controller | `false` |
494
496
| `operator.image` | Container image used for the openfaas-operator | See [values.yaml](./values.yaml) |
495
497
| `operator.resources` | Resource limits and requests for openfaas-operator containers | See [values.yaml](./values.yaml) |
Original file line number Diff line number Diff line change @@ -434,6 +434,12 @@ spec:
434
434
- name : auditing_http_verbs
435
435
value : " {{ .Values.eventSubscription.auditing.httpVerbs }}"
436
436
{{- end}}
437
+ {{- if .Values.faasnetesPro.logs}}
438
+ - name : " debug"
439
+ value : " {{ .Values.faasnetesPro.logs.debug }}"
440
+ - name : " log_encoding"
441
+ value : " {{ .Values.faasnetesPro.logs.format }}"
442
+ {{- end }}
437
443
volumeMounts :
438
444
{{- if .Values.iam.enabled }}
439
445
- name : issuer-key
Original file line number Diff line number Diff line change @@ -172,6 +172,9 @@ operator:
172
172
173
173
faasnetesPro :
174
174
image : ghcr.io/openfaasltd/faas-netes:0.5.14
175
+ logs :
176
+ debug : false
177
+ format : " console"
175
178
176
179
# For the Community Edition
177
180
faasnetes :
You can’t perform that action at this time.
0 commit comments