Skip to content

Commit 6d9b490

Browse files
committed
Add helm installation support for access_log format
1 parent 3fd510a commit 6d9b490

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

charts/nginx-gateway-fabric/values.schema.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,23 @@
202202
"logging": {
203203
"description": "Logging defines logging related settings for NGINX.",
204204
"properties": {
205+
"accessLog": {
206+
"description": "AccessLog defines the access log settings.",
207+
"properties": {
208+
"disabled": {
209+
"description": "Disabled turns off access logging when set to true.",
210+
"required": [],
211+
"type": "boolean"
212+
},
213+
"format": {
214+
"description": "Format specifies the custom log format string. If not specified, NGINX default 'combined' format is used.",
215+
"required": [],
216+
"type": "string"
217+
}
218+
},
219+
"required": [],
220+
"type": "object"
221+
},
205222
"agentLevel": {
206223
"enum": [
207224
"debug",

charts/nginx-gateway-fabric/values.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,16 @@ nginx:
471471
# - error
472472
# - panic
473473
# - fatal
474+
# accessLog:
475+
# type: object
476+
# description: AccessLog defines the access log settings.
477+
# properties:
478+
# disabled:
479+
# type: boolean
480+
# description: Disabled turns off access logging when set to true.
481+
# format:
482+
# type: string
483+
# description: Format specifies the custom log format string. If not specified, NGINX default 'combined' format is used.
474484
# nginxPlus:
475485
# type: object
476486
# description: NginxPlus specifies NGINX Plus additional settings.

0 commit comments

Comments
 (0)