Skip to content

Commit 0101ebe

Browse files
authored
DataHub 1.0 Release (#563)
* Release DataHub 1.0 * Add flags for new UI
1 parent 5b8c349 commit 0101ebe

File tree

9 files changed

+27
-12
lines changed

9 files changed

+27
-12
lines changed

charts/datahub/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ 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.11
7+
version: 0.5.13
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.
10-
appVersion: 0.15.0
10+
appVersion: v1.0.0
1111
dependencies:
1212
- name: datahub-gms
13-
version: 0.2.178
13+
version: 0.2.179
1414
repository: file://./subcharts/datahub-gms
1515
condition: datahub-gms.enabled
1616
- name: datahub-frontend

charts/datahub/subcharts/datahub-frontend/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ type: application
1515
version: 0.2.162
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.
18-
appVersion: v0.15.0
18+
appVersion: v1.0.0

charts/datahub/subcharts/datahub-gms/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: A Helm chart for DataHub's datahub-gms component
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.178
15+
version: 0.2.179
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.
18-
appVersion: v0.15.0
18+
appVersion: v1.0.0

charts/datahub/subcharts/datahub-gms/templates/deployment.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,12 @@ spec:
107107
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
108108
failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
109109
env:
110+
- name: THEME_V2_ENABLED
111+
value: {{ .Values.theme_v2.enabled | quote }}
112+
- name: THEME_V2_DEFAULT
113+
value: {{ .Values.theme_v2.default | quote }}
114+
- name: THEME_V2_TOGGLEABLE
115+
value: {{ .Values.theme_v2.toggeable | quote }}
110116
- name: ENTITY_VERSIONING_ENABLED
111117
value: {{ .Values.global.datahub.entityVersioning.enabled | quote }}
112118
- name: SHOW_SEARCH_FILTERS_V2

charts/datahub/subcharts/datahub-gms/values.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ imagePullSecrets: []
2828
nameOverride: ""
2929
fullnameOverride: ""
3030

31+
theme_v2:
32+
enabled: true
33+
default: false
34+
toggeable: true
35+
3136
terminationGracePeriodSeconds: 150
3237

3338
serviceAccount:

charts/datahub/subcharts/datahub-ingestion-cron/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ type: application
1515
version: 0.2.146
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.
18-
appVersion: v0.14.1
18+
appVersion: v1.0.0

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ type: application
1515
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.
18-
appVersion: v0.15.0
18+
appVersion: v1.0.0

charts/datahub/subcharts/datahub-mce-consumer/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ type: application
1515
version: 0.2.169
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.
18-
appVersion: v0.15.0
18+
appVersion: v1.0.0

charts/datahub/values.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ datahub-gms:
2323
initialDelaySeconds: 120
2424
periodSeconds: 30
2525
failureThreshold: 8
26+
theme_v2:
27+
enabled: true
28+
default: false
29+
toggeable: true
2630
# Optionaly specify service type for datahub-gms: LoadBalancer, ClusterIP or NodePort, by default: LoadBalancer
2731
# service:
2832
# type: ClusterIP
@@ -754,7 +758,7 @@ global:
754758
# value: password
755759

756760
datahub:
757-
version: v0.15.0.1
761+
version: v1.0.0
758762
gms:
759763
protocol: "http"
760764
port: "8080"
@@ -775,7 +779,7 @@ global:
775779
port: "9091"
776780
nodePort: "30002"
777781

778-
appVersion: "1.0"
782+
appVersion: "1.0.0"
779783
systemUpdate:
780784
## The following options control settings for datahub-upgrade job which will
781785
## managed ES indices and other update related work
@@ -795,7 +799,7 @@ global:
795799

796800
managed_ingestion:
797801
enabled: true
798-
defaultCliVersion: "0.15.0.1"
802+
defaultCliVersion: "1.0.0"
799803

800804
metadata_service_authentication:
801805
enabled: true

0 commit comments

Comments
 (0)