Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion charts/fluent-bit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ keywords:
- logging
- fluent-bit
- fluentd
version: 0.54.0
version: 0.54.1
appVersion: 4.1.0
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/fluentd/fluentbit/icon/fluentbit-icon-color.svg
home: https://fluentbit.io/
Expand Down
3 changes: 2 additions & 1 deletion charts/fluent-bit/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ spec:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
appProtocol: {{ default "http" .Values.service.appProtocol }}
name: {{ default "http" .Values.service.name }}
{{- if and (eq .Values.service.type "NodePort") (.Values.service.nodePort) }}
nodePort: {{ .Values.service.nodePort }}
{{- end }}
Expand Down
2 changes: 2 additions & 0 deletions charts/fluent-bit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,10 @@ securityContext: {}
# runAsUser: 1000

service:
name: http
type: ClusterIP
port: 2020
appProtocol: http
internalTrafficPolicy:
loadBalancerClass:
loadBalancerSourceRanges: []
Expand Down