Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update autoscaling section in docs #839

Merged
merged 1 commit into from
Aug 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions deploy/docs/Best_Practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Reference: https://docs.fluentbit.io/manual/v/1.3/input/tail#docker_mode

### Fluentd Autoscaling

We have provided an option to enable autoscaling for Fluentd deployments. This is disabled by default.
We have provided an option to enable autoscaling for both logs and metrics Fluentd statefulsets. This is disabled by default.

To enable autoscaling for Fluentd:

Expand All @@ -71,12 +71,22 @@ To enable autoscaling for Fluentd:
enabled: true
```

- Enable autoscaling for Fluentd
- Enable autoscaling for Logs Fluentd statefulset
```yaml
fluentd:
## Option to turn autoscaling on for fluentd and specify metrics for HPA.
autoscaling:
enabled: true
logs:
## Option to turn autoscaling on for fluentd and specify metrics for HPA.
autoscaling:
enabled: true
```

- Enable autoscaling for Metrics Fluentd statefulset
```yaml
fluentd:
metrics:
## Option to turn autoscaling on for fluentd and specify metrics for HPA.
autoscaling:
enabled: true
```


Expand Down