Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5d3c468

Browse files
authoredMar 4, 2025··
fix(mae-consumer): Fix helm syntax usage. (#561)
1 parent d66882d commit 5d3c468

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎charts/datahub/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A Helm chart for DataHub
44
type: application
55
# This is the chart version. This version number should be incremented each time you make changes
66
# to the chart and its templates, including the app version.
7-
version: 0.5.8
7+
version: 0.5.9
88
# This is the version number of the application being deployed. This version number should be
99
# incremented each time you make changes to the application.
1010
appVersion: 0.15.0
@@ -18,7 +18,7 @@ dependencies:
1818
repository: file://./subcharts/datahub-frontend
1919
condition: datahub-frontend.enabled
2020
- name: datahub-mae-consumer
21-
version: 0.2.165
21+
version: 0.2.166
2222
repository: file://./subcharts/datahub-mae-consumer
2323
condition: global.datahub_standalone_consumers_enabled
2424
- name: datahub-mce-consumer

‎charts/datahub/subcharts/datahub-mae-consumer/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: A Helm chart for Kubernetes
1212
type: application
1313
# This is the chart version. This version number should be incremented each time you make changes
1414
# to the chart and its templates, including the app version.
15-
version: 0.2.165
15+
version: 0.2.166
1616
# This is the version number of the application being deployed. This version number should be
1717
# incremented each time you make changes to the application.
1818
appVersion: v0.15.0

‎charts/datahub/subcharts/datahub-mae-consumer/templates/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ spec:
9494
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
9595
env:
9696
- name: PRE_PROCESS_HOOKS_UI_ENABLED
97-
value: { { or .Values.global.datahub.reProcessUIEventHooks (not .Values.global.datahub.preProcessHooksUIEnabled) | quote } }
97+
value: {{ or .Values.global.datahub.reProcessUIEventHooks (not .Values.global.datahub.preProcessHooksUIEnabled) | quote }}
9898
- name: ENTITY_VERSIONING_ENABLED
9999
value: {{ .Values.global.datahub.entityVersioning.enabled | quote }}
100100
- name: SHOW_SEARCH_FILTERS_V2

0 commit comments

Comments
 (0)
Please sign in to comment.