config(): Enable V2 UI in quickstart by default (#12692)

This commit is contained in:
david-leifker 2025-02-20 13:42:11 -06:00 committed by GitHub
parent 0cf89d60f6
commit 8618d08230
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 21 additions and 0 deletions

View File

@ -26,6 +26,7 @@ MAE_CONSUMER_ENABLED=true
MCE_CONSUMER_ENABLED=true
PE_CONSUMER_ENABLED=true
UI_INGESTION_ENABLED=true
THEME_V2_DEFAULT=true
# Uncomment to disable Metadata Service Authentication
# METADATA_SERVICE_AUTH_ENABLED=false

View File

@ -11,6 +11,7 @@ x-datahub-frontend-service: &datahub-frontend-service
environment: &datahub-frontend-service-env
KAFKA_BOOTSTRAP_SERVER: broker:29092
DATAHUB_GMS_HOST: ${DATAHUB_GMS_HOST:-datahub-gms}
THEME_V2_DEFAULT: ${THEME_V2_DEFAULT:-true}
volumes:
- ${HOME}/.datahub/plugins:/etc/datahub/plugins

View File

@ -104,6 +104,7 @@ x-datahub-gms-service: &datahub-gms-service
ALTERNATE_MCP_VALIDATION: ${ALTERNATE_MCP_VALIDATION:-true}
STRICT_URN_VALIDATION_ENABLED: ${STRICT_URN_VALIDATION_ENABLED:-true}
ENTITY_VERSIONING_ENABLED: ${ENTITY_VERSIONING_ENABLED:-true}
THEME_V2_DEFAULT: ${THEME_V2_DEFAULT:-true}
healthcheck:
test: curl -sS --fail http://datahub-gms:${DATAHUB_GMS_PORT:-8080}/health
start_period: 90s

View File

@ -103,6 +103,7 @@ services:
- NEO4J_URI=bolt://neo4j
- NEO4J_USERNAME=neo4j
- PE_CONSUMER_ENABLED=true
- THEME_V2_DEFAULT=true
- UI_INGESTION_ENABLED=true
healthcheck:
interval: 1s

View File

@ -103,6 +103,7 @@ services:
- NEO4J_URI=bolt://neo4j
- NEO4J_USERNAME=neo4j
- PE_CONSUMER_ENABLED=true
- THEME_V2_DEFAULT=true
- UI_INGESTION_ENABLED=true
healthcheck:
interval: 1s

View File

@ -12,6 +12,13 @@ bootstrap:
async: false
mcps_location: "bootstrap_mcps/root-user.yaml"
- name: root-user-editable-info
version: v1
blocking: true
optional: true
async: false
mcps_location: "bootstrap_mcps/root-user-editable-info.yaml"
- name: data-platforms
version: v2
blocking: true

View File

@ -0,0 +1,8 @@
- entityUrn: urn:li:corpuser:datahub
entityType: corpuser
aspectName: corpUserEditableInfo
changeType: CREATE
aspect:
teams: []
skills: []
pictureLink: "https://media.licdn.com/dms/image/v2/D4E10AQHWZxgp69mYEg/image-shrink_800/B4EZS8_IkWHoAk-/0/1738337455407?e=2147483647&v=beta&t=GNcym7ZKnu5tPO4n4gV6XaGPPU0JfNvjH3QoNKR2sro"

View File

@ -20,6 +20,7 @@ XPACK_SECURITY_ENABLED="${XPACK_SECURITY_ENABLED:=plugins.security.disabled=true
ELASTICSEARCH_USE_SSL="${ELASTICSEARCH_USE_SSL:=false}"
USE_AWS_ELASTICSEARCH="${USE_AWS_ELASTICSEARCH:=true}"
THEME_V2_DEFAULT=false \
DATAHUB_TELEMETRY_ENABLED=false \
DOCKER_COMPOSE_BASE="file://$( dirname "$DIR" )" \
DATAHUB_SEARCH_IMAGE="$DATAHUB_SEARCH_IMAGE" DATAHUB_SEARCH_TAG="$DATAHUB_SEARCH_TAG" \