Skip to content

Commit 75d6082

Browse files
Merge pull request #26 from DataKitchen/release/2.4.0
Release/2.4.0
2 parents cdb21c5 + 1f0e004 commit 75d6082

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

deploy/charts/observability-app/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: dataops-observability-app
33
type: application
44
appVersion: "2.x.x"
5-
version: "2.2.2"
5+
version: "2.2.3"
66

77
description: DataOps Observability
88
home: https://datakitchen.io

deploy/charts/observability-app/templates/observability-ui.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ spec:
6666
- name: OBSERVABILITY_CSP_EXTRA
6767
value: {{ tpl .Values.observability_ui.csp_extra . | quote }}
6868
{{- end }}
69-
{{- if or .Values.observability_ui.environmentJson .Values.observability_ui.manifestJson }}
69+
{{- if or .Values.observability_ui.environmentJson .Values.observability_ui.manifestJson .Values.extraVolumeMounts }}
7070
volumeMounts:
7171
{{- if .Values.observability_ui.environmentJson }}
7272
- mountPath: /observability_ui/shell/environments/environment.json
@@ -80,7 +80,14 @@ spec:
8080
readOnly: true
8181
subPath: module-federation.manifest.json
8282
{{- end }}
83+
{{- with .Values.extraVolumeMounts }}
84+
{{ toYaml . | nindent 12 }}
85+
{{- end }}
8386
{{- end }}
87+
{{- with .Values.extraVolumes }}
88+
volumes:
89+
{{ toYaml . | nindent 8 }}
90+
{{- end }}
8491
{{- with .Values.observability_ui.nodeSelector }}
8592
nodeSelector:
8693
{{- toYaml . | nindent 8 }}

scheduler/agent_check.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,4 @@ def _send_agent_status_change_event(self, agent: Agent, new_status: AgentStatus)
9090
latest_event_timestamp=agent.latest_event_timestamp,
9191
)
9292

93-
with self.event_producer as producer:
94-
producer.produce(self.kafka_topic, event)
93+
self.event_producer.produce(self.kafka_topic, event)

0 commit comments

Comments
 (0)