### _Why are the changes needed?_ Close https://github.com/apache/kyuubi/issues/5484 Kyuubi provides a basic new Web UI which is built on top of Vue3, we can remove the legacy dummy Web UI in 1.8. The new UI hosts at `http://<host>:<port>/ui/` and the legacy UI hosts at `http://<host>:<port>/`, we should 1. Remove the legacy UI routing from Jetty 2. Remove all files related to legacy UI 3. Redirect `http://<host>:<port>/` to `http://<host>:<port>/ui/` ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [x] Add screenshots for manual tests if appropriate building with the command `build/dist --web-ui`, then `cd dist` and perform `bin/kyuubi run` access http://0.0.0.0:10099 could correctly redirect to http://0.0.0.0:10099/ui/ <img width="1428" alt="image" src="https://github.com/apache/kyuubi/assets/26535726/1e8a67f6-e4db-415e-8a47-dd7c41b487cf"> swagger is render correctly too. <img width="1428" alt="image" src="https://github.com/apache/kyuubi/assets/26535726/1cb4ba31-9965-4468-b7c3-b0319ba959e6"> - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/contributing/code/testing.html#running-tests) locally before make a pull request ### _Was this patch authored or co-authored using generative AI tooling?_ No. Closes #5516 from pan3793/5484. Closes #5484 9d58ef758 [Cheng Pan] address comment and fix test 6d4c0981b [Cheng Pan] [KYUUBI #5484] Remove legacy Web UI Authored-by: Cheng Pan <chengpan@apache.org> Signed-off-by: Kent Yao <yao@apache.org>
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership.
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
**/.*/**
|
|
**/*.json
|
|
**/*.prefs
|
|
**/*.log
|
|
**/*.md
|
|
**/*.iml
|
|
**/target/**
|
|
**/out/**
|
|
**/spark-warehouse/**
|
|
**/metastore_db/**
|
|
**/licenses/LICENSE*
|
|
**/licenses-binary/LICENSE*
|
|
**/dependency-reduced-pom.xml
|
|
**/scalastyle-output.xml
|
|
NOTICE*
|
|
docs/**
|
|
build/apache-maven-*/**
|
|
build/scala-*/**
|
|
**/**/operation_logs/**/**
|
|
**/**/server_operation_logs/**/**
|
|
**/**/engine_operation_logs/**/**
|
|
**/*.output.schema
|
|
**/apache-kyuubi-*-bin*/**
|
|
**/benchmarks/**
|
|
**/org.apache.spark.status.AppHistoryServerPlugin
|
|
**/metadata-store-schema*.sql
|
|
**/*.derby.sql
|
|
**/*.mysql.sql
|
|
**/*.sqlite.sql
|
|
**/node/**
|
|
**/web-ui/dist/**
|
|
**/web-ui/coverage/**
|
|
**/pnpm-lock.yaml
|
|
**/node_modules/**
|
|
**/gen/*
|
|
**/*.tokens
|