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 deploy/charts/observability-app/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: dataops-observability-app
type: application
appVersion: "2.x.x"
version: "2.2.2"
version: "2.2.3"

description: DataOps Observability
home: https://datakitchen.io
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
- name: OBSERVABILITY_CSP_EXTRA
value: {{ tpl .Values.observability_ui.csp_extra . | quote }}
{{- end }}
{{- if or .Values.observability_ui.environmentJson .Values.observability_ui.manifestJson }}
{{- if or .Values.observability_ui.environmentJson .Values.observability_ui.manifestJson .Values.extraVolumeMounts }}
volumeMounts:
{{- if .Values.observability_ui.environmentJson }}
- mountPath: /observability_ui/shell/environments/environment.json
Expand All @@ -80,7 +80,14 @@ spec:
readOnly: true
subPath: module-federation.manifest.json
{{- end }}
{{- with .Values.extraVolumeMounts }}
{{ toYaml . | nindent 12 }}
{{- end }}
{{- end }}
{{- with .Values.extraVolumes }}
volumes:
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.observability_ui.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
3 changes: 1 addition & 2 deletions scheduler/agent_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,4 @@ def _send_agent_status_change_event(self, agent: Agent, new_status: AgentStatus)
latest_event_timestamp=agent.latest_event_timestamp,
)

with self.event_producer as producer:
producer.produce(self.kafka_topic, event)
self.event_producer.produce(self.kafka_topic, event)