forked from aws-ia/terraform-aws-eks-blueprints
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1ff3983
commit 40b76cb
Showing
1 changed file
with
22 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,115 +1,35 @@ | ||
global: | ||
## Override the deployment namespace | ||
namespaceOverride: logging | ||
|
||
image: | ||
repository: ${image} | ||
tag: ${tag} | ||
pullPolicy: IfNotPresent | ||
|
||
# Overrides the image tag whose default is the chart appVersion. | ||
tag: ${tag} | ||
imagePullSecrets: [] | ||
nameOverride: "" | ||
fullnameOverride: "" | ||
|
||
service: | ||
parsersFiles: | ||
- /fluent-bit/parsers/parsers.conf | ||
# extraParsers: | | ||
# [PARSER] | ||
# Name logfmt | ||
# Format logfmt | ||
|
||
input: | ||
tag: "kube.*" | ||
path: "/var/log/containers/*.log" | ||
db: "/var/log/flb_kube.db" | ||
parser: docker | ||
dockerMode: "On" | ||
memBufLimit: 5MB | ||
skipLongLines: "On" | ||
refreshInterval: 10 | ||
|
||
# extraInputs: | | ||
# [INPUT] | ||
# Name winlog | ||
# Channels Setup,Windows PowerShell | ||
# Interval_Sec 1 | ||
# DB winlog.sqlite | ||
|
||
|
||
filter: | ||
match: "kube.*" | ||
kubeURL: "https://kubernetes.default.svc.cluster.local:443" | ||
mergeLog: "On" | ||
mergeLogKey: "data" | ||
k8sLoggingParser: "On" | ||
k8sLoggingExclude: "On" | ||
|
||
# extraFilters: | | ||
# [FILTER] | ||
# Name grep | ||
# Match * | ||
# Exclude log lvl=debug* | ||
|
||
cloudWatch: | ||
enabled: true | ||
match: "*" | ||
region: "eu-west-1" | ||
logGroupName: ${cw_worker_loggroup} | ||
logStreamName: | ||
logStreamPrefix: "fluentbit-" | ||
logKey: | ||
logFormat: | ||
roleArn: | ||
autoCreateGroup: true | ||
endpoint: | ||
credentialsEndpoint: {} | ||
|
||
firehose: | ||
enabled: false | ||
match: "*" | ||
region: "us-east-1" | ||
deliveryStream: "my-stream" | ||
dataKeys: | ||
roleArn: | ||
endpoint: | ||
timeKey: | ||
|
||
kinesis: | ||
enabled: false | ||
match: "*" | ||
region: "us-east-1" | ||
stream: "my-kinesis-stream-name" | ||
partitionKey: "container_id" | ||
appendNewline: | ||
dataKeys: | ||
roleArn: | ||
timeKey: | ||
timeKeyFormat: | ||
|
||
# extraOutputs: | | ||
# [OUTPUT] | ||
# Name file | ||
# Format template | ||
# Template {time} used={Mem.used} free={Mem.free} total={Mem.total} | ||
|
||
serviceAccount: | ||
# Specifies whether a service account should be created | ||
create: true | ||
# Annotations to add to the service account | ||
annotations: {} | ||
name: | ||
# The name of the service account to use. | ||
# If not set and create is true, a name is generated using the fullname template | ||
name: "" | ||
|
||
resources: | ||
limits: | ||
memory: 500Mi | ||
requests: | ||
cpu: 500m | ||
memory: 500Mi | ||
podSecurityContext: {} | ||
securityContext: {} | ||
|
||
## Assign a PriorityClassName to pods if set | ||
# priorityClassName: system-node-critical | ||
nodeSelector: {} | ||
tolerations: [] | ||
affinity: {} | ||
|
||
updateStrategy: | ||
type: RollingUpdate | ||
# Allows for pod scheduler prioritisation | ||
# Can be overridden here or for agentCollector and standaloneCollector independently. | ||
priorityClassName: "" | ||
|
||
nodeSelector: | ||
kubernetes.io/os: linux | ||
extraEnvs: [] | ||
extraConfigMapMounts: [] | ||
extraHostPathMounts: [] | ||
secretMounts: [] | ||
|
||
multicluster: | ||
enabled: true |