Skip to content

Commit eef7317

Browse files
Add revisionHistoryLimit support to aws-for-fluent-bit values
1 parent 728b05a commit eef7317

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

stable/aws-for-fluent-bit/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: aws-for-fluent-bit
33
description: A Helm chart to deploy aws-for-fluent-bit project
4-
version: 0.1.33
4+
version: 0.1.34
55
appVersion: 2.32.2.20240425
66
home: https://github.com/aws/eks-charts
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png

stable/aws-for-fluent-bit/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ helm delete aws-for-fluent-bit --namespace kube-system
208208
| `env`| Optional List of pod environment variables for the pods |`[]`|
209209
| `livenessProbe`| Optional yaml to define liveness probe - In order for liveness probe to work correctly defaults have been set in `service.extraService`, [details](https://docs.fluentbit.io/manual/administration/monitoring#health-check-for-fluent-bit) |httpGet:<br> &nbsp;&nbsp; path: /api/v1/health <br> &nbsp;&nbsp; port: 2020 <br> &nbsp;&nbsp; scheme: HTTP <br> failureThreshold: 2 <br> initialDelaySeconds: 30 <br> timeoutSeconds: 10 |
210210
| `readinessProbe`| Optional yaml to define readiness probe |`{}`|
211+
| `revisionHistoryLimit`| Number of revisions to keep | 10 |
211212
| `serviceMonitor.enabled`| Whether serviceMonitor should be enabled or not, [details](https://github.com/prometheus-operator/prometheus-operator/blob/main/Documentation/user-guides/getting-started.md) |`false`||`[]`|
212213
| `serviceMonitor.service.type`| Type of service to be created - options are ClusterIP, NodePort, LoadBalancer, ExternalName - [details](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types) |`ClusterIP`|
213214
| `serviceMonitor.service.port`| Incoming TCP port of the kubernetes service - Traffic is routed from this port to the targetPort to gain access to the application - By default and for convenience, the targetPort is set to the same value as the port field. [details](https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service) | 2020 |

stable/aws-for-fluent-bit/templates/daemonset.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ metadata:
88
spec:
99
updateStrategy:
1010
{{ toYaml .Values.updateStrategy | indent 4 }}
11+
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
1112
selector:
1213
matchLabels:
1314
{{- include "aws-for-fluent-bit.selectorLabels" . | nindent 6 }}

stable/aws-for-fluent-bit/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,8 @@ resources:
283283
cpu: 50m
284284
memory: 50Mi
285285

286+
revisionHistoryLimit: 10
287+
286288
## Assign a PriorityClassName to pods if set
287289
# priorityClassName: system-node-critical
288290

0 commit comments

Comments
 (0)