Skip to content
Merged
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/openobserve/templates/alertmanager-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
template:
metadata:
annotations:
{{- with .Values.podAnnotations }}
{{- with .Values.podAnnotations.alertmanager }}
{{- toYaml . | nindent 8 }}
{{- end }}
checksum/specific-config: {{ include (print $.Template.BasePath "/alertmanager-configmap.yaml") . | sha256sum }}
Expand Down
2 changes: 1 addition & 1 deletion charts/openobserve/templates/alertquerier-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
template:
metadata:
annotations:
{{- with .Values.podAnnotations }}
{{- with .Values.podAnnotations.alertquerier }}
{{- toYaml . | nindent 8 }}
{{- end }}
checksum/specific-config: {{ include (print $.Template.BasePath "/alertquerier-configmap.yaml") . | sha256sum }}
Expand Down
2 changes: 1 addition & 1 deletion charts/openobserve/templates/compactor-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
template:
metadata:
annotations:
{{- with .Values.podAnnotations }}
{{- with .Values.podAnnotations.compactor }}
{{- toYaml . | nindent 8 }}
{{- end }}
checksum/specific-config: {{ include (print $.Template.BasePath "/compactor-configmap.yaml") . | sha256sum }}
Expand Down
2 changes: 1 addition & 1 deletion charts/openobserve/templates/dex-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
{{- include "openobserve.selectorLabels" . | nindent 6 }}
template:
metadata:
{{- with .Values.enterprise.dex.podAnnotations }}
{{- with .Values.podAnnotations.dex }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/openobserve/templates/ingester-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
template:
metadata:
annotations:
{{- with .Values.podAnnotations }}
{{- with .Values.podAnnotations.ingester }}
{{- toYaml . | nindent 8 }}
{{- end }}
checksum/specific-config: {{ include (print $.Template.BasePath "/ingester-configmap.yaml") . | sha256sum }}
Expand Down
2 changes: 1 addition & 1 deletion charts/openobserve/templates/querier-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
template:
metadata:
annotations:
{{- with .Values.podAnnotations }}
{{- with .Values.podAnnotations.querier }}
{{- toYaml . | nindent 8 }}
{{- end }}
checksum/specific-config: {{ include (print $.Template.BasePath "/querier-configmap.yaml") . | sha256sum }}
Expand Down
2 changes: 1 addition & 1 deletion charts/openobserve/templates/reportserver-delpoyment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
template:
metadata:
annotations:
{{- with .Values.podAnnotations }}
{{- with .Values.podAnnotations.reportserver }}
{{- toYaml . | nindent 8 }}
{{- end }}
checksum/specific-config: {{ include (print $.Template.BasePath "/reportserver-configmap.yaml") . | sha256sum }}
Expand Down
2 changes: 1 addition & 1 deletion charts/openobserve/templates/router-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
template:
metadata:
annotations:
{{- with .Values.podAnnotations }}
{{- with .Values.podAnnotations.router }}
{{- toYaml . | nindent 8 }}
{{- end }}
checksum/specific-config: {{ include (print $.Template.BasePath "/router-configmap.yaml") . | sha256sum }}
Expand Down
2 changes: 1 addition & 1 deletion charts/openobserve/templates/zplane-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
role: zplane
template:
metadata:
{{- with .Values.podAnnotations }}
{{- with .Values.podAnnotations.zplane }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
Expand Down
11 changes: 10 additions & 1 deletion charts/openobserve/test_values_external_secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,16 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template
name: ""

podAnnotations: {}
podAnnotations:
ingester: {}
querier: {}
compactor: {}
router: {}
alertmanager: {}
dex: {}
reportserver: {}
alertquerier: {}
zplane: {}

labels: {}

Expand Down
12 changes: 10 additions & 2 deletions charts/openobserve/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,16 @@ serviceAccount:
# If not set and create is true, a name is generated using the fullname template
name: ""

podAnnotations: {}
podAnnotations:
ingester: {}
querier: {}
compactor: {}
router: {}
alertmanager: {}
dex: {}
reportserver: {}
alertquerier: {}
zplane: {}

labels: {}

Expand Down Expand Up @@ -951,7 +960,6 @@ enterprise:
tag: v2.37.0
pullPolicy: IfNotPresent
extraEnv: []
podAnnotations: {}
ingress:
enabled: true
className: "nginx"
Expand Down