Skip to content

Commit

Permalink
helm fixes for warnings and template fluentbit configs (#1041)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdheipSingh authored Dec 19, 2024
1 parent 702dbc8 commit 780eadc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion helm/templates/ingestor-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
containers:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.parseable.securityContext | nindent 8 }}
{{- toYaml .Values.parseable.securityContext | nindent 10 }}
image: {{ .Values.parseable.image.repository }}:{{ .Values.parseable.image.tag | default .Chart.AppVersion }}
imagePullPolicy: {{ .Values.parseable.image.pullPolicy }}
args:
Expand Down
2 changes: 1 addition & 1 deletion helm/templates/querier-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
containers:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.parseable.securityContext | nindent 8 }}
{{- toYaml .Values.parseable.securityContext | nindent 10 }}
image: {{ .Values.parseable.image.repository }}:{{ .Values.parseable.image.tag | default .Chart.AppVersion }}
imagePullPolicy: {{ .Values.parseable.image.pullPolicy }}
args: ["/usr/bin/parseable", {{ if eq .Values.parseable.store "gcs-store" }}"s3-store"{{ else }}{{ .Values.parseable.store | quote }}{{ end }}]
Expand Down
18 changes: 11 additions & 7 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,11 @@ vector:
fluent-bit:
enabled: false
kind: DaemonSet
serverHost: parseable.parseable.svc.cluster.local
serverHost: parseable-ingestor-service.parseable.svc.cluster.local
serverUsername: admin
serverPassword: admin
serverStream: $NAMESPACE
excludeNamespaces: kube-system, default
replicaCount: 1
image:
repository: parseable/fluent-bit
Expand Down Expand Up @@ -399,19 +403,19 @@ fluent-bit:
Name parseable
Match kube.*
Server_Host {{ .Values.serverHost }}
Username admin
Password admin
Username {{ .Values.serverUsername }}
Password {{ .Values.serverPassword }}
Server_Port 80
Stream $NAMESPACE
Exclude_Namespaces kube-system, default
Stream {{ .Values.serverStream }}
Exclude_Namespaces {{ .Values.excludeNamespaces }}
[OUTPUT]
Name parseable
Match k8s_events
Server_Host {{ .Values.serverHost }}
Server_Port 80
Username admin
Password admin
Username {{ .Values.serverUsername }}
Password {{ .Values.serverPassword }}
Stream k8s-events
upstream: {}
Expand Down

0 comments on commit 780eadc

Please sign in to comment.