Skip to content

Commit

Permalink
Add TimeZone parameter in docker and helm configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmo0920 committed Jan 2, 2020
1 parent e0fc07c commit 447b4cd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,4 @@ data:
Compress gzip
AutoCreateBucket true
LogLevel info
TimeZone Asia/Tokyo
1 change: 1 addition & 0 deletions docker/fluent-bit-s3.conf
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@
Bucket ${FLUENT_BIT_BUCKET_NAME}
S3Prefix ${FLUENT_BIT_S3_PREFIX}
Region ${FLUENT_BIT_REGION}
# TimeZone Asia/Tokyo
1 change: 1 addition & 0 deletions helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ The following table lists the configurable parameters of the Fluent-Bit chart an
| `s3.compress` | Whether compress with gzip or not | `gzip` |
| `s3.autoCreateBucket` | Whether auto creating bucket or not | `true` |
| `s3.logLevel` | Specify logLevel | `info` |
| `s3.timeZone` | Specify TimeZone | `Asia/Tokyo` |

> **Tip**: You can use the default [values.yaml](values.yaml)
1 change: 1 addition & 0 deletions helm/fluent-bit/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,4 @@ data:
Compress {{ .Values.s3.compress }}
AutoCreateBucket {{ .Values.s3.autoCreateBucket }}
LogLevel {{ .Values.s3.logLevel }}
TimeZone {{ .Values.s3.timeZone }}
1 change: 1 addition & 0 deletions helm/fluent-bit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,4 @@ s3:
compress: gzip
autoCreateBucket: true
logLevel: info
timeZone: "Asia/Tokyo"

0 comments on commit 447b4cd

Please sign in to comment.