diff --git a/helm/templates/ingestor-statefulset.yaml b/helm/templates/ingestor-statefulset.yaml index 95995685a..684509e1a 100644 --- a/helm/templates/ingestor-statefulset.yaml +++ b/helm/templates/ingestor-statefulset.yaml @@ -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: diff --git a/helm/templates/querier-statefulset.yaml b/helm/templates/querier-statefulset.yaml index 7613b9fca..2694eb75f 100644 --- a/helm/templates/querier-statefulset.yaml +++ b/helm/templates/querier-statefulset.yaml @@ -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 }}] diff --git a/helm/values.yaml b/helm/values.yaml index 555cc0c29..1f8c2f5cf 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -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 @@ -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: {}