mirror of
https://github.com/datahub-project/datahub.git
synced 2025-06-27 05:03:31 +00:00
config(): Enable V2 UI in quickstart by default (#12692)
This commit is contained in:
parent
0cf89d60f6
commit
8618d08230
1
docker/datahub-gms/env/docker.env
vendored
1
docker/datahub-gms/env/docker.env
vendored
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
@ -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" \
|
||||
|
Loading…
x
Reference in New Issue
Block a user